author | skalberg |
Sun, 13 Feb 2005 17:15:14 +0100 | |
changeset 15531 | 08c8dad8e399 |
parent 15263 | b40e91201039 |
child 15570 | 8d8c70b41bab |
permissions | -rw-r--r-- |
41
97aae241094b
added cons, rcons, last_elem, sort_strings, take_suffix;
wenzelm
parents:
24
diff
changeset
|
1 |
(* Title: Pure/library.ML |
0 | 2 |
ID: $Id$ |
233 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
12284 | 4 |
Author: Markus Wenzel, TU Munich |
0 | 5 |
|
233 | 6 |
Basic library: functions, options, pairs, booleans, lists, integers, |
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
7 |
rational numbers, strings, lists as sets, association lists, generic |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
8 |
tables, balanced trees, orders, current directory, misc. |
0 | 9 |
*) |
10 |
||
8418 | 11 |
infix |> |>> |>>> ~~ \ \\ ins ins_string ins_int orf andf prefix upto downto |
4212 | 12 |
mem mem_int mem_string union union_int union_string inter inter_int |
13 |
inter_string subset subset_int subset_string; |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
14 |
|
6510 | 15 |
infix 3 oo ooo oooo; |
5893 | 16 |
|
4621 | 17 |
signature LIBRARY = |
18 |
sig |
|
19 |
(*functions*) |
|
20 |
val curry: ('a * 'b -> 'c) -> 'a -> 'b -> 'c |
|
21 |
val uncurry: ('a -> 'b -> 'c) -> 'a * 'b -> 'c |
|
22 |
val I: 'a -> 'a |
|
23 |
val K: 'a -> 'b -> 'a |
|
24 |
val |> : 'a * ('a -> 'b) -> 'b |
|
8418 | 25 |
val |>> : ('a * 'b) * ('a -> 'c) -> 'c * 'b |
26 |
val |>>> : ('a * 'b) * ('a -> 'c * 'd) -> 'c * ('b * 'd) |
|
4621 | 27 |
val apl: 'a * ('a * 'b -> 'c) -> 'b -> 'c |
28 |
val apr: ('a * 'b -> 'c) * 'b -> 'a -> 'c |
|
29 |
val funpow: int -> ('a -> 'a) -> 'a -> 'a |
|
5893 | 30 |
val oo: ('a -> 'b) * ('c -> 'd -> 'a) -> 'c -> 'd -> 'b |
31 |
val ooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'a) -> 'c -> 'd -> 'e -> 'b |
|
6510 | 32 |
val oooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'f -> 'a) -> 'c -> 'd -> 'e -> 'f -> 'b |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
33 |
|
4621 | 34 |
(*stamps*) |
35 |
type stamp |
|
36 |
val stamp: unit -> stamp |
|
37 |
||
38 |
(*options*) |
|
39 |
val the: 'a option -> 'a |
|
40 |
val if_none: 'a option -> 'a -> 'a |
|
41 |
val is_some: 'a option -> bool |
|
42 |
val is_none: 'a option -> bool |
|
43 |
val apsome: ('a -> 'b) -> 'a option -> 'b option |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
44 |
exception ERROR |
6959 | 45 |
val try: ('a -> 'b) -> 'a -> 'b option |
4621 | 46 |
val can: ('a -> 'b) -> 'a -> bool |
14868 | 47 |
datatype 'a result = Result of 'a | Exn of exn |
48 |
val capture: ('a -> 'b) -> 'a -> 'b result |
|
49 |
val release: 'a result -> 'a |
|
50 |
val get_result: 'a result -> 'a option |
|
51 |
val get_exn: 'a result -> exn option |
|
4621 | 52 |
|
53 |
(*pairs*) |
|
54 |
val pair: 'a -> 'b -> 'a * 'b |
|
55 |
val rpair: 'a -> 'b -> 'b * 'a |
|
56 |
val fst: 'a * 'b -> 'a |
|
57 |
val snd: 'a * 'b -> 'b |
|
58 |
val eq_fst: (''a * 'b) * (''a * 'c) -> bool |
|
59 |
val eq_snd: ('a * ''b) * ('c * ''b) -> bool |
|
60 |
val swap: 'a * 'b -> 'b * 'a |
|
61 |
val apfst: ('a -> 'b) -> 'a * 'c -> 'b * 'c |
|
62 |
val apsnd: ('a -> 'b) -> 'c * 'a -> 'c * 'b |
|
63 |
val pairself: ('a -> 'b) -> 'a * 'a -> 'b * 'b |
|
64 |
||
65 |
(*booleans*) |
|
66 |
val equal: ''a -> ''a -> bool |
|
67 |
val not_equal: ''a -> ''a -> bool |
|
68 |
val orf: ('a -> bool) * ('a -> bool) -> 'a -> bool |
|
69 |
val andf: ('a -> bool) * ('a -> bool) -> 'a -> bool |
|
70 |
val exists: ('a -> bool) -> 'a list -> bool |
|
71 |
val forall: ('a -> bool) -> 'a list -> bool |
|
72 |
val set: bool ref -> bool |
|
73 |
val reset: bool ref -> bool |
|
74 |
val toggle: bool ref -> bool |
|
9118 | 75 |
val change: 'a ref -> ('a -> 'a) -> unit |
4621 | 76 |
val setmp: 'a ref -> 'a -> ('b -> 'c) -> 'b -> 'c |
11853 | 77 |
val conditional: bool -> (unit -> unit) -> unit |
4621 | 78 |
|
79 |
(*lists*) |
|
80 |
exception LIST of string |
|
81 |
val hd: 'a list -> 'a |
|
82 |
val tl: 'a list -> 'a list |
|
83 |
val cons: 'a -> 'a list -> 'a list |
|
5285 | 84 |
val single: 'a -> 'a list |
4629 | 85 |
val append: 'a list -> 'a list -> 'a list |
13794 | 86 |
val rev_append: 'a list -> 'a list -> 'a list |
5904 | 87 |
val apply: ('a -> 'a) list -> 'a -> 'a |
4621 | 88 |
val foldl: ('a * 'b -> 'a) -> 'a * 'b list -> 'a |
89 |
val foldr: ('a * 'b -> 'b) -> 'a list * 'b -> 'b |
|
90 |
val foldr1: ('a * 'a -> 'a) -> 'a list -> 'a |
|
14792 | 91 |
val fold: ('a -> 'b -> 'b) -> 'a list -> 'b -> 'b |
15035
8c57751cd43f
added fold_rev: ('a -> 'b -> 'b) -> 'a list -> 'b -> 'b;
wenzelm
parents:
14981
diff
changeset
|
92 |
val fold_rev: ('a -> 'b -> 'b) -> 'a list -> 'b -> 'b |
4956
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
93 |
val foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list |
11002 | 94 |
val foldln: ('a * int -> 'b -> 'b) -> 'a list -> 'b -> 'b |
4621 | 95 |
val length: 'a list -> int |
96 |
val take: int * 'a list -> 'a list |
|
97 |
val drop: int * 'a list -> 'a list |
|
13629 | 98 |
val splitAt: int * 'a list -> 'a list * 'a list |
4713 | 99 |
val dropwhile: ('a -> bool) -> 'a list -> 'a list |
4621 | 100 |
val nth_elem: int * 'a list -> 'a |
11773 | 101 |
val map_nth_elem: int -> ('a -> 'a) -> 'a list -> 'a list |
4621 | 102 |
val last_elem: 'a list -> 'a |
103 |
val split_last: 'a list -> 'a list * 'a |
|
4893 | 104 |
val nth_update: 'a -> int * 'a list -> 'a list |
4621 | 105 |
val find_index: ('a -> bool) -> 'a list -> int |
106 |
val find_index_eq: ''a -> ''a list -> int |
|
107 |
val find_first: ('a -> bool) -> 'a list -> 'a option |
|
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
108 |
val get_first: ('a -> 'b option) -> 'a list -> 'b option |
4621 | 109 |
val flat: 'a list list -> 'a list |
12136 | 110 |
val unflat: 'a list list -> 'b list -> 'b list list |
4621 | 111 |
val seq: ('a -> unit) -> 'a list -> unit |
112 |
val separate: 'a -> 'a list -> 'a list |
|
113 |
val replicate: int -> 'a -> 'a list |
|
114 |
val multiply: 'a list * 'a list list -> 'a list list |
|
14792 | 115 |
val product: 'a list -> 'b list -> ('a * 'b) list |
4621 | 116 |
val filter: ('a -> bool) -> 'a list -> 'a list |
117 |
val filter_out: ('a -> bool) -> 'a list -> 'a list |
|
118 |
val mapfilter: ('a -> 'b option) -> 'a list -> 'b list |
|
119 |
val map2: ('a * 'b -> 'c) -> 'a list * 'b list -> 'c list |
|
120 |
val exists2: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
|
121 |
val forall2: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
|
4956
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
122 |
val seq2: ('a * 'b -> unit) -> 'a list * 'b list -> unit |
4621 | 123 |
val ~~ : 'a list * 'b list -> ('a * 'b) list |
124 |
val split_list: ('a * 'b) list -> 'a list * 'b list |
|
7468
6ce03d2f7d91
equal_lists: ('a * 'b -> bool) -> 'a list * 'b list -> bool;
wenzelm
parents:
7090
diff
changeset
|
125 |
val equal_lists: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
4621 | 126 |
val prefix: ''a list * ''a list -> bool |
127 |
val take_prefix: ('a -> bool) -> 'a list -> 'a list * 'a list |
|
128 |
val take_suffix: ('a -> bool) -> 'a list -> 'a list * 'a list |
|
12249 | 129 |
val prefixes1: 'a list -> 'a list list |
130 |
val suffixes1: 'a list -> 'a list list |
|
4621 | 131 |
|
132 |
(*integers*) |
|
10692 | 133 |
val gcd: int * int -> int |
134 |
val lcm: int * int -> int |
|
4621 | 135 |
val inc: int ref -> int |
136 |
val dec: int ref -> int |
|
137 |
val upto: int * int -> int list |
|
138 |
val downto: int * int -> int list |
|
139 |
val downto0: int list * int -> bool |
|
140 |
val radixpand: int * int -> int list |
|
141 |
val radixstring: int * string * int -> string |
|
142 |
val string_of_int: int -> string |
|
143 |
val string_of_indexname: string * int -> string |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
144 |
val read_radixint: int * string list -> int * string list |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
145 |
val read_int: string list -> int * string list |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
146 |
val oct_char: string -> string |
4621 | 147 |
|
10692 | 148 |
(*rational numbers*) |
149 |
type rat |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
150 |
exception RAT of string |
10692 | 151 |
val rep_rat: rat -> int * int |
152 |
val ratadd: rat * rat -> rat |
|
153 |
val ratmul: rat * rat -> rat |
|
154 |
val ratinv: rat -> rat |
|
155 |
val int_ratdiv: int * int -> rat |
|
156 |
val ratneg: rat -> rat |
|
157 |
val rat_of_int: int -> rat |
|
158 |
||
4621 | 159 |
(*strings*) |
6312 | 160 |
val nth_elem_string: int * string -> string |
6282 | 161 |
val foldl_string: ('a * string -> 'a) -> 'a * string -> 'a |
6312 | 162 |
val exists_string: (string -> bool) -> string -> bool |
4621 | 163 |
val enclose: string -> string -> string -> string |
6642 | 164 |
val unenclose: string -> string |
4621 | 165 |
val quote: string -> string |
166 |
val space_implode: string -> string list -> string |
|
167 |
val commas: string list -> string |
|
168 |
val commas_quote: string list -> string |
|
169 |
val cat_lines: string list -> string |
|
170 |
val space_explode: string -> string -> string list |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
171 |
val split_lines: string -> string list |
5942 | 172 |
val prefix_lines: string -> string -> string |
7712 | 173 |
val untabify: string list -> string list |
5285 | 174 |
val suffix: string -> string -> string |
175 |
val unsuffix: string -> string -> string |
|
15060 | 176 |
val unprefix: string -> string -> string |
10951 | 177 |
val replicate_string: int -> string -> string |
14926 | 178 |
val translate_string: (string -> string) -> string -> string |
4621 | 179 |
|
180 |
(*lists as sets*) |
|
181 |
val mem: ''a * ''a list -> bool |
|
182 |
val mem_int: int * int list -> bool |
|
183 |
val mem_string: string * string list -> bool |
|
184 |
val gen_mem: ('a * 'b -> bool) -> 'a * 'b list -> bool |
|
185 |
val ins: ''a * ''a list -> ''a list |
|
186 |
val ins_int: int * int list -> int list |
|
187 |
val ins_string: string * string list -> string list |
|
188 |
val gen_ins: ('a * 'a -> bool) -> 'a * 'a list -> 'a list |
|
189 |
val union: ''a list * ''a list -> ''a list |
|
190 |
val union_int: int list * int list -> int list |
|
191 |
val union_string: string list * string list -> string list |
|
192 |
val gen_union: ('a * 'a -> bool) -> 'a list * 'a list -> 'a list |
|
7090 | 193 |
val gen_inter: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list |
4621 | 194 |
val inter: ''a list * ''a list -> ''a list |
195 |
val inter_int: int list * int list -> int list |
|
196 |
val inter_string: string list * string list -> string list |
|
197 |
val subset: ''a list * ''a list -> bool |
|
198 |
val subset_int: int list * int list -> bool |
|
199 |
val subset_string: string list * string list -> bool |
|
200 |
val eq_set: ''a list * ''a list -> bool |
|
201 |
val eq_set_string: string list * string list -> bool |
|
202 |
val gen_subset: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
|
203 |
val \ : ''a list * ''a -> ''a list |
|
204 |
val \\ : ''a list * ''a list -> ''a list |
|
205 |
val gen_rem: ('a * 'b -> bool) -> 'a list * 'b -> 'a list |
|
206 |
val gen_rems: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list |
|
207 |
val gen_distinct: ('a * 'a -> bool) -> 'a list -> 'a list |
|
208 |
val distinct: ''a list -> ''a list |
|
209 |
val findrep: ''a list -> ''a list |
|
210 |
val gen_duplicates: ('a * 'a -> bool) -> 'a list -> 'a list |
|
211 |
val duplicates: ''a list -> ''a list |
|
212 |
||
213 |
(*association lists*) |
|
214 |
val assoc: (''a * 'b) list * ''a -> 'b option |
|
215 |
val assoc_int: (int * 'a) list * int -> 'a option |
|
216 |
val assoc_string: (string * 'a) list * string -> 'a option |
|
217 |
val assoc_string_int: ((string * int) * 'a) list * (string * int) -> 'a option |
|
218 |
val assocs: (''a * 'b list) list -> ''a -> 'b list |
|
219 |
val assoc2: (''a * (''b * 'c) list) list * (''a * ''b) -> 'c option |
|
220 |
val gen_assoc: ('a * 'b -> bool) -> ('b * 'c) list * 'a -> 'c option |
|
221 |
val overwrite: (''a * 'b) list * (''a * 'b) -> (''a * 'b) list |
|
222 |
val gen_overwrite: ('a * 'a -> bool) -> ('a * 'b) list * ('a * 'b) -> ('a * 'b) list |
|
223 |
||
12284 | 224 |
(*lists as tables*) |
225 |
val gen_merge_lists: ('a * 'a -> bool) -> 'a list -> 'a list -> 'a list |
|
226 |
val gen_merge_lists': ('a * 'a -> bool) -> 'a list -> 'a list -> 'a list |
|
4621 | 227 |
val merge_lists: ''a list -> ''a list -> ''a list |
12284 | 228 |
val merge_lists': ''a list -> ''a list -> ''a list |
4692 | 229 |
val merge_alists: (''a * 'b) list -> (''a * 'b) list -> (''a * 'b) list |
15263 | 230 |
val merge_alists': (''a * 'b) list -> (''a * 'b) list -> (''a * 'b) list |
4621 | 231 |
|
232 |
(*balanced trees*) |
|
233 |
exception Balance |
|
234 |
val fold_bal: ('a * 'a -> 'a) -> 'a list -> 'a |
|
235 |
val access_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> int -> 'a |
|
236 |
val accesses_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> 'a list |
|
237 |
||
238 |
(*orders*) |
|
239 |
val rev_order: order -> order |
|
240 |
val make_ord: ('a * 'a -> bool) -> 'a * 'a -> order |
|
241 |
val int_ord: int * int -> order |
|
242 |
val string_ord: string * string -> order |
|
243 |
val prod_ord: ('a * 'b -> order) -> ('c * 'd -> order) -> ('a * 'c) * ('b * 'd) -> order |
|
244 |
val dict_ord: ('a * 'b -> order) -> 'a list * 'b list -> order |
|
245 |
val list_ord: ('a * 'b -> order) -> 'a list * 'b list -> order |
|
246 |
val sort: ('a * 'a -> order) -> 'a list -> 'a list |
|
247 |
val sort_strings: string list -> string list |
|
248 |
val sort_wrt: ('a -> string) -> 'a list -> 'a list |
|
11514 | 249 |
val unique_strings: string list -> string list |
4621 | 250 |
|
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
251 |
(*random numbers*) |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
252 |
exception RANDOM |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
253 |
val random: unit -> real |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
254 |
val random_range: int -> int -> int |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
255 |
val one_of: 'a list -> 'a |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
256 |
val frequency: (int * 'a) list -> 'a |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
257 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
258 |
(*current directory*) |
4621 | 259 |
val cd: string -> unit |
260 |
val pwd: unit -> string |
|
261 |
||
262 |
(*misc*) |
|
263 |
val make_keylist: ('a -> 'b) -> 'a list -> ('a * 'b) list |
|
264 |
val keyfilter: ('a * ''b) list -> ''b -> 'a list |
|
265 |
val partition: ('a -> bool) -> 'a list -> 'a list * 'a list |
|
266 |
val partition_eq: ('a * 'a -> bool) -> 'a list -> 'a list list |
|
267 |
val partition_list: (int -> 'a -> bool) -> int -> int -> 'a list -> 'a list list |
|
268 |
val gensym: string -> string |
|
269 |
val scanwords: (string -> bool) -> string list -> string list |
|
270 |
end; |
|
271 |
||
272 |
structure Library: LIBRARY = |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
273 |
struct |
0 | 274 |
|
4995 | 275 |
|
233 | 276 |
(** functions **) |
0 | 277 |
|
233 | 278 |
(*handy combinators*) |
279 |
fun curry f x y = f (x, y); |
|
280 |
fun uncurry f (x, y) = f x y; |
|
281 |
fun I x = x; |
|
282 |
fun K x y = x; |
|
0 | 283 |
|
380 | 284 |
(*reverse apply*) |
410 | 285 |
fun (x |> f) = f x; |
8418 | 286 |
fun ((x, y) |>> f) = (f x, y); |
287 |
fun ((x, y) |>>> f) = let val (x', z) = f x in (x', (y, z)) end; |
|
380 | 288 |
|
233 | 289 |
(*application of (infix) operator to its left or right argument*) |
290 |
fun apl (x, f) y = f (x, y); |
|
291 |
fun apr (f, y) x = f (x, y); |
|
0 | 292 |
|
233 | 293 |
(*function exponentiation: f(...(f x)...) with n applications of f*) |
294 |
fun funpow n f x = |
|
295 |
let fun rep (0, x) = x |
|
296 |
| rep (n, x) = rep (n - 1, f x) |
|
297 |
in rep (n, x) end; |
|
160 | 298 |
|
5893 | 299 |
(*concatenation: 2 and 3 args*) |
300 |
fun (f oo g) x y = f (g x y); |
|
301 |
fun (f ooo g) x y z = f (g x y z); |
|
6510 | 302 |
fun (f oooo g) x y z w = f (g x y z w); |
303 |
||
160 | 304 |
|
305 |
||
2471 | 306 |
(** stamps **) |
307 |
||
308 |
type stamp = unit ref; |
|
309 |
val stamp: unit -> stamp = ref; |
|
310 |
||
311 |
||
312 |
||
233 | 313 |
(** options **) |
0 | 314 |
|
15531 | 315 |
fun the opt = valOf opt; |
0 | 316 |
|
4212 | 317 |
(*strict!*) |
15531 | 318 |
fun if_none opt a = getOpt(opt,a); |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
319 |
|
15531 | 320 |
fun is_some opt = isSome opt; |
0 | 321 |
|
15531 | 322 |
fun is_none (SOME _) = false |
323 |
| is_none NONE = true; |
|
0 | 324 |
|
15531 | 325 |
fun apsome f (SOME x) = SOME (f x) |
326 |
| apsome _ NONE = NONE; |
|
0 | 327 |
|
6959 | 328 |
|
329 |
(* exception handling *) |
|
330 |
||
331 |
exception ERROR; |
|
332 |
||
15531 | 333 |
fun try f x = SOME (f x) |
334 |
handle Interrupt => raise Interrupt | ERROR => raise ERROR | _ => NONE; |
|
6959 | 335 |
|
336 |
fun can f x = is_some (try f x); |
|
4139 | 337 |
|
338 |
||
14868 | 339 |
datatype 'a result = |
340 |
Result of 'a | |
|
341 |
Exn of exn; |
|
342 |
||
343 |
fun capture f x = Result (f x) handle e => Exn e; |
|
344 |
||
345 |
fun release (Result y) = y |
|
346 |
| release (Exn e) = raise e; |
|
347 |
||
15531 | 348 |
fun get_result (Result x) = SOME x |
349 |
| get_result _ = NONE; |
|
14868 | 350 |
|
15531 | 351 |
fun get_exn (Exn exn) = SOME exn |
352 |
| get_exn _ = NONE; |
|
14868 | 353 |
|
354 |
||
4139 | 355 |
|
233 | 356 |
(** pairs **) |
357 |
||
358 |
fun pair x y = (x, y); |
|
359 |
fun rpair x y = (y, x); |
|
360 |
||
361 |
fun fst (x, y) = x; |
|
362 |
fun snd (x, y) = y; |
|
363 |
||
364 |
fun eq_fst ((x1, _), (x2, _)) = x1 = x2; |
|
365 |
fun eq_snd ((_, y1), (_, y2)) = y1 = y2; |
|
366 |
||
367 |
fun swap (x, y) = (y, x); |
|
368 |
||
4212 | 369 |
(*apply function to components*) |
233 | 370 |
fun apfst f (x, y) = (f x, y); |
371 |
fun apsnd f (x, y) = (x, f y); |
|
4212 | 372 |
fun pairself f (x, y) = (f x, f y); |
233 | 373 |
|
374 |
||
375 |
||
376 |
(** booleans **) |
|
377 |
||
378 |
(* equality *) |
|
379 |
||
380 |
fun equal x y = x = y; |
|
381 |
fun not_equal x y = x <> y; |
|
382 |
||
383 |
||
384 |
(* operators for combining predicates *) |
|
385 |
||
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
386 |
fun (p orf q) = fn x => p x orelse q x; |
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
387 |
fun (p andf q) = fn x => p x andalso q x; |
233 | 388 |
|
389 |
||
390 |
(* predicates on lists *) |
|
391 |
||
392 |
(*exists pred [x1, ..., xn] ===> pred x1 orelse ... orelse pred xn*) |
|
393 |
fun exists (pred: 'a -> bool) : 'a list -> bool = |
|
394 |
let fun boolf [] = false |
|
395 |
| boolf (x :: xs) = pred x orelse boolf xs |
|
396 |
in boolf end; |
|
397 |
||
398 |
(*forall pred [x1, ..., xn] ===> pred x1 andalso ... andalso pred xn*) |
|
399 |
fun forall (pred: 'a -> bool) : 'a list -> bool = |
|
400 |
let fun boolf [] = true |
|
401 |
| boolf (x :: xs) = pred x andalso boolf xs |
|
402 |
in boolf end; |
|
0 | 403 |
|
233 | 404 |
|
380 | 405 |
(* flags *) |
406 |
||
407 |
fun set flag = (flag := true; true); |
|
408 |
fun reset flag = (flag := false; false); |
|
409 |
fun toggle flag = (flag := not (! flag); ! flag); |
|
410 |
||
9118 | 411 |
fun change r f = r := f (! r); |
412 |
||
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
413 |
(*temporarily set flag, handling exceptions*) |
2978 | 414 |
fun setmp flag value f x = |
2958 | 415 |
let |
416 |
val orig_value = ! flag; |
|
417 |
fun return y = (flag := orig_value; y); |
|
418 |
in |
|
419 |
flag := value; |
|
420 |
return (f x handle exn => (return (); raise exn)) |
|
421 |
end; |
|
422 |
||
380 | 423 |
|
11853 | 424 |
(* conditional execution *) |
425 |
||
426 |
fun conditional b f = if b then f () else (); |
|
427 |
||
428 |
||
233 | 429 |
|
430 |
(** lists **) |
|
431 |
||
432 |
exception LIST of string; |
|
433 |
||
434 |
fun hd [] = raise LIST "hd" |
|
435 |
| hd (x :: _) = x; |
|
436 |
||
437 |
fun tl [] = raise LIST "tl" |
|
438 |
| tl (_ :: xs) = xs; |
|
439 |
||
440 |
fun cons x xs = x :: xs; |
|
5285 | 441 |
fun single x = [x]; |
233 | 442 |
|
4629 | 443 |
fun append xs ys = xs @ ys; |
444 |
||
13794 | 445 |
(* tail recursive version *) |
15531 | 446 |
fun rev_append xs ys = List.revAppend(xs,ys); |
13794 | 447 |
|
5904 | 448 |
fun apply [] x = x |
449 |
| apply (f :: fs) x = apply fs (f x); |
|
450 |
||
233 | 451 |
|
452 |
(* fold *) |
|
453 |
||
454 |
(*the following versions of fold are designed to fit nicely with infixes*) |
|
0 | 455 |
|
233 | 456 |
(* (op @) (e, [x1, ..., xn]) ===> ((e @ x1) @ x2) ... @ xn |
457 |
for operators that associate to the left (TAIL RECURSIVE)*) |
|
458 |
fun foldl (f: 'a * 'b -> 'a) : 'a * 'b list -> 'a = |
|
459 |
let fun itl (e, []) = e |
|
460 |
| itl (e, a::l) = itl (f(e, a), l) |
|
461 |
in itl end; |
|
462 |
||
463 |
(* (op @) ([x1, ..., xn], e) ===> x1 @ (x2 ... @ (xn @ e)) |
|
464 |
for operators that associate to the right (not tail recursive)*) |
|
465 |
fun foldr f (l, e) = |
|
466 |
let fun itr [] = e |
|
467 |
| itr (a::l) = f(a, itr l) |
|
468 |
in itr l end; |
|
469 |
||
470 |
(* (op @) [x1, ..., xn] ===> x1 @ (x2 ... @ (x[n-1] @ xn)) |
|
471 |
for n > 0, operators that associate to the right (not tail recursive)*) |
|
472 |
fun foldr1 f l = |
|
4181 | 473 |
let fun itr [x] = x |
233 | 474 |
| itr (x::l) = f(x, itr l) |
475 |
in itr l end; |
|
476 |
||
14792 | 477 |
fun fold f xs y = foldl (fn (y', x) => f x y') (y, xs); |
15035
8c57751cd43f
added fold_rev: ('a -> 'b -> 'b) -> 'a list -> 'b -> 'b;
wenzelm
parents:
14981
diff
changeset
|
478 |
fun fold_rev f xs y = foldr (fn (x, y') => f x y') (xs, y); |
14792 | 479 |
|
4956
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
480 |
fun foldl_map _ (x, []) = (x, []) |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
481 |
| foldl_map f (x, y :: ys) = |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
482 |
let |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
483 |
val (x', y') = f (x, y); |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
484 |
val (x'', ys') = foldl_map f (x', ys); |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
485 |
in (x'', y' :: ys') end; |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
486 |
|
11002 | 487 |
fun foldln f xs e = fst (foldl (fn ((e,i), x) => (f (x,i) e, i+1)) ((e,1),xs)); |
233 | 488 |
|
489 |
(* basic list functions *) |
|
490 |
||
491 |
(*length of a list, should unquestionably be a standard function*) |
|
492 |
local fun length1 (n, []) = n (*TAIL RECURSIVE*) |
|
493 |
| length1 (n, x :: xs) = length1 (n + 1, xs) |
|
494 |
in fun length l = length1 (0, l) end; |
|
495 |
||
496 |
(*take the first n elements from a list*) |
|
497 |
fun take (n, []) = [] |
|
498 |
| take (n, x :: xs) = |
|
499 |
if n > 0 then x :: take (n - 1, xs) else []; |
|
500 |
||
501 |
(*drop the first n elements from a list*) |
|
502 |
fun drop (n, []) = [] |
|
503 |
| drop (n, x :: xs) = |
|
504 |
if n > 0 then drop (n - 1, xs) else x :: xs; |
|
0 | 505 |
|
13629 | 506 |
fun splitAt(n,[]) = ([],[]) |
507 |
| splitAt(n,xs as x::ys) = |
|
508 |
if n>0 then let val (ps,qs) = splitAt(n-1,ys) in (x::ps,qs) end |
|
509 |
else ([],xs) |
|
510 |
||
4713 | 511 |
fun dropwhile P [] = [] |
512 |
| dropwhile P (ys as x::xs) = if P x then dropwhile P xs else ys; |
|
513 |
||
233 | 514 |
(*return nth element of a list, where 0 designates the first element; |
515 |
raise EXCEPTION if list too short*) |
|
516 |
fun nth_elem NL = |
|
517 |
(case drop NL of |
|
518 |
[] => raise LIST "nth_elem" |
|
519 |
| x :: _ => x); |
|
520 |
||
11773 | 521 |
fun map_nth_elem 0 f (x :: xs) = f x :: xs |
522 |
| map_nth_elem n f (x :: xs) = x :: map_nth_elem (n - 1) f xs |
|
523 |
| map_nth_elem _ _ [] = raise LIST "map_nth_elem"; |
|
524 |
||
233 | 525 |
(*last element of a list*) |
526 |
fun last_elem [] = raise LIST "last_elem" |
|
527 |
| last_elem [x] = x |
|
528 |
| last_elem (_ :: xs) = last_elem xs; |
|
529 |
||
3762 | 530 |
(*rear decomposition*) |
531 |
fun split_last [] = raise LIST "split_last" |
|
532 |
| split_last [x] = ([], x) |
|
533 |
| split_last (x :: xs) = apfst (cons x) (split_last xs); |
|
534 |
||
4893 | 535 |
(*update nth element*) |
13629 | 536 |
fun nth_update x n_xs = |
537 |
(case splitAt n_xs of |
|
538 |
(_,[]) => raise LIST "nth_update" |
|
539 |
| (prfx, _ :: sffx') => prfx @ (x :: sffx')) |
|
4893 | 540 |
|
4212 | 541 |
(*find the position of an element in a list*) |
542 |
fun find_index pred = |
|
543 |
let fun find _ [] = ~1 |
|
544 |
| find n (x :: xs) = if pred x then n else find (n + 1) xs; |
|
545 |
in find 0 end; |
|
3762 | 546 |
|
4224 | 547 |
fun find_index_eq x = find_index (equal x); |
4212 | 548 |
|
549 |
(*find first element satisfying predicate*) |
|
15531 | 550 |
fun find_first _ [] = NONE |
4212 | 551 |
| find_first pred (x :: xs) = |
15531 | 552 |
if pred x then SOME x else find_first pred xs; |
233 | 553 |
|
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
554 |
(*get first element by lookup function*) |
15531 | 555 |
fun get_first _ [] = NONE |
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
556 |
| get_first f (x :: xs) = |
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
557 |
(case f x of |
15531 | 558 |
NONE => get_first f xs |
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
559 |
| some => some); |
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
560 |
|
233 | 561 |
(*flatten a list of lists to a list*) |
15531 | 562 |
val flat = List.concat; |
233 | 563 |
|
12136 | 564 |
fun unflat (xs :: xss) ys = |
13629 | 565 |
let val (ps,qs) = splitAt(length xs,ys) |
566 |
in ps :: unflat xss qs end |
|
12136 | 567 |
| unflat [] [] = [] |
568 |
| unflat _ _ = raise LIST "unflat"; |
|
569 |
||
233 | 570 |
(*like Lisp's MAPC -- seq proc [x1, ..., xn] evaluates |
571 |
(proc x1; ...; proc xn) for side effects*) |
|
572 |
fun seq (proc: 'a -> unit) : 'a list -> unit = |
|
573 |
let fun seqf [] = () |
|
574 |
| seqf (x :: xs) = (proc x; seqf xs) |
|
575 |
in seqf end; |
|
576 |
||
577 |
(*separate s [x1, x2, ..., xn] ===> [x1, s, x2, s, ..., s, xn]*) |
|
578 |
fun separate s (x :: (xs as _ :: _)) = x :: s :: separate s xs |
|
579 |
| separate _ xs = xs; |
|
580 |
||
581 |
(*make the list [x, x, ..., x] of length n*) |
|
582 |
fun replicate n (x: 'a) : 'a list = |
|
583 |
let fun rep (0, xs) = xs |
|
584 |
| rep (n, xs) = rep (n - 1, x :: xs) |
|
585 |
in |
|
586 |
if n < 0 then raise LIST "replicate" |
|
587 |
else rep (n, []) |
|
588 |
end; |
|
589 |
||
14926 | 590 |
fun translate_string f = String.translate (f o String.str); |
591 |
||
4248
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
592 |
(*multiply [a, b, c, ...] * [xs, ys, zs, ...]*) |
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
593 |
fun multiply ([], _) = [] |
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
594 |
| multiply (x :: xs, yss) = map (cons x) yss @ multiply (xs, yss); |
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
595 |
|
14792 | 596 |
(*direct product*) |
597 |
fun product _ [] = [] |
|
598 |
| product [] _ = [] |
|
599 |
| product (x :: xs) ys = map (pair x) ys @ product xs ys; |
|
600 |
||
233 | 601 |
|
602 |
(* filter *) |
|
603 |
||
604 |
(*copy the list preserving elements that satisfy the predicate*) |
|
15531 | 605 |
val filter = List.filter; |
0 | 606 |
|
607 |
fun filter_out f = filter (not o f); |
|
608 |
||
233 | 609 |
fun mapfilter (f: 'a -> 'b option) ([]: 'a list) = [] : 'b list |
610 |
| mapfilter f (x :: xs) = |
|
611 |
(case f x of |
|
15531 | 612 |
NONE => mapfilter f xs |
613 |
| SOME y => y :: mapfilter f xs); |
|
233 | 614 |
|
615 |
||
616 |
(* lists of pairs *) |
|
617 |
||
380 | 618 |
fun map2 _ ([], []) = [] |
619 |
| map2 f (x :: xs, y :: ys) = (f (x, y) :: map2 f (xs, ys)) |
|
620 |
| map2 _ _ = raise LIST "map2"; |
|
621 |
||
622 |
fun exists2 _ ([], []) = false |
|
623 |
| exists2 pred (x :: xs, y :: ys) = pred (x, y) orelse exists2 pred (xs, ys) |
|
624 |
| exists2 _ _ = raise LIST "exists2"; |
|
625 |
||
626 |
fun forall2 _ ([], []) = true |
|
627 |
| forall2 pred (x :: xs, y :: ys) = pred (x, y) andalso forall2 pred (xs, ys) |
|
628 |
| forall2 _ _ = raise LIST "forall2"; |
|
629 |
||
4956
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
630 |
fun seq2 _ ([], []) = () |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
631 |
| seq2 f (x :: xs, y :: ys) = (f (x, y); seq2 f (xs, ys)) |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
632 |
| seq2 _ _ = raise LIST "seq2"; |
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
633 |
|
233 | 634 |
(*combine two lists forming a list of pairs: |
635 |
[x1, ..., xn] ~~ [y1, ..., yn] ===> [(x1, y1), ..., (xn, yn)]*) |
|
636 |
fun [] ~~ [] = [] |
|
637 |
| (x :: xs) ~~ (y :: ys) = (x, y) :: (xs ~~ ys) |
|
638 |
| _ ~~ _ = raise LIST "~~"; |
|
639 |
||
640 |
(*inverse of ~~; the old 'split': |
|
641 |
[(x1, y1), ..., (xn, yn)] ===> ([x1, ..., xn], [y1, ..., yn])*) |
|
642 |
fun split_list (l: ('a * 'b) list) = (map #1 l, map #2 l); |
|
643 |
||
7468
6ce03d2f7d91
equal_lists: ('a * 'b -> bool) -> 'a list * 'b list -> bool;
wenzelm
parents:
7090
diff
changeset
|
644 |
fun equal_lists eq (xs, ys) = length xs = length ys andalso forall2 eq (xs, ys); |
6ce03d2f7d91
equal_lists: ('a * 'b -> bool) -> 'a list * 'b list -> bool;
wenzelm
parents:
7090
diff
changeset
|
645 |
|
233 | 646 |
|
647 |
(* prefixes, suffixes *) |
|
648 |
||
649 |
fun [] prefix _ = true |
|
650 |
| (x :: xs) prefix (y :: ys) = x = y andalso (xs prefix ys) |
|
651 |
| _ prefix _ = false; |
|
652 |
||
653 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., x(i-1)], [xi, ..., xn]) |
|
654 |
where xi is the first element that does not satisfy the predicate*) |
|
655 |
fun take_prefix (pred : 'a -> bool) (xs: 'a list) : 'a list * 'a list = |
|
656 |
let fun take (rxs, []) = (rev rxs, []) |
|
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
657 |
| take (rxs, x :: xs) = |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
658 |
if pred x then take(x :: rxs, xs) else (rev rxs, x :: xs) |
233 | 659 |
in take([], xs) end; |
660 |
||
661 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., xi], [x(i+1), ..., xn]) |
|
662 |
where xi is the last element that does not satisfy the predicate*) |
|
663 |
fun take_suffix _ [] = ([], []) |
|
664 |
| take_suffix pred (x :: xs) = |
|
665 |
(case take_suffix pred xs of |
|
666 |
([], sffx) => if pred x then ([], x :: sffx) else ([x], sffx) |
|
667 |
| (prfx, sffx) => (x :: prfx, sffx)); |
|
668 |
||
12249 | 669 |
fun prefixes1 [] = [] |
670 |
| prefixes1 (x :: xs) = map (cons x) ([] :: prefixes1 xs); |
|
671 |
||
672 |
fun suffixes1 xs = map rev (prefixes1 (rev xs)); |
|
673 |
||
233 | 674 |
|
675 |
||
676 |
(** integers **) |
|
677 |
||
10692 | 678 |
fun gcd(x,y) = |
679 |
let fun gxd x y = |
|
680 |
if y = 0 then x else gxd y (x mod y) |
|
681 |
in if x < y then gxd y x else gxd x y end; |
|
682 |
||
683 |
fun lcm(x,y) = (x * y) div gcd(x,y); |
|
684 |
||
2958 | 685 |
fun inc i = (i := ! i + 1; ! i); |
686 |
fun dec i = (i := ! i - 1; ! i); |
|
233 | 687 |
|
688 |
||
689 |
(* lists of integers *) |
|
690 |
||
691 |
(*make the list [from, from + 1, ..., to]*) |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
692 |
fun (from upto to) = |
233 | 693 |
if from > to then [] else from :: ((from + 1) upto to); |
694 |
||
695 |
(*make the list [from, from - 1, ..., to]*) |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
696 |
fun (from downto to) = |
233 | 697 |
if from < to then [] else from :: ((from - 1) downto to); |
698 |
||
699 |
(*predicate: downto0 (is, n) <=> is = [n, n - 1, ..., 0]*) |
|
700 |
fun downto0 (i :: is, n) = i = n andalso downto0 (is, n - 1) |
|
701 |
| downto0 ([], n) = n = ~1; |
|
702 |
||
703 |
||
704 |
(* convert integers to strings *) |
|
705 |
||
706 |
(*expand the number in the given base; |
|
707 |
example: radixpand (2, 8) gives [1, 0, 0, 0]*) |
|
708 |
fun radixpand (base, num) : int list = |
|
709 |
let |
|
710 |
fun radix (n, tail) = |
|
711 |
if n < base then n :: tail |
|
712 |
else radix (n div base, (n mod base) :: tail) |
|
713 |
in radix (num, []) end; |
|
714 |
||
715 |
(*expands a number into a string of characters starting from "zerochar"; |
|
716 |
example: radixstring (2, "0", 8) gives "1000"*) |
|
717 |
fun radixstring (base, zerochar, num) = |
|
718 |
let val offset = ord zerochar; |
|
719 |
fun chrof n = chr (offset + n) |
|
720 |
in implode (map chrof (radixpand (base, num))) end; |
|
721 |
||
722 |
||
3407
afd288caf573
Removal of radixstring from string_of_int; addition of string_of_indexname
paulson
parents:
3393
diff
changeset
|
723 |
val string_of_int = Int.toString; |
233 | 724 |
|
3407
afd288caf573
Removal of radixstring from string_of_int; addition of string_of_indexname
paulson
parents:
3393
diff
changeset
|
725 |
fun string_of_indexname (a,0) = a |
afd288caf573
Removal of radixstring from string_of_int; addition of string_of_indexname
paulson
parents:
3393
diff
changeset
|
726 |
| string_of_indexname (a,i) = a ^ "_" ^ Int.toString i; |
233 | 727 |
|
728 |
||
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
729 |
(* read integers *) |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
730 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
731 |
fun read_radixint (radix: int, cs) : int * string list = |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
732 |
let val zero = ord"0" |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
733 |
val limit = zero+radix |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
734 |
fun scan (num,[]) = (num,[]) |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
735 |
| scan (num, c::cs) = |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
736 |
if zero <= ord c andalso ord c < limit |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
737 |
then scan(radix*num + ord c - zero, cs) |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
738 |
else (num, c::cs) |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
739 |
in scan(0,cs) end; |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
740 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
741 |
fun read_int cs = read_radixint (10, cs); |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
742 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
743 |
fun oct_char s = chr (#1 (read_radixint (8, explode s))); |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
744 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
745 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
746 |
|
233 | 747 |
(** strings **) |
748 |
||
6312 | 749 |
(*functions tuned for strings, avoiding explode*) |
750 |
||
751 |
fun nth_elem_string (i, str) = |
|
6959 | 752 |
(case try String.substring (str, i, 1) of |
15531 | 753 |
SOME s => s |
754 |
| NONE => raise LIST "nth_elem_string"); |
|
6312 | 755 |
|
6282 | 756 |
fun foldl_string f (x0, str) = |
757 |
let |
|
758 |
val n = size str; |
|
14968 | 759 |
fun fold (x, i) = |
760 |
if i < n then fold (f (x, String.substring (str, i, 1)), i + 1) else x; |
|
6282 | 761 |
in fold (x0, 0) end; |
762 |
||
14968 | 763 |
fun exists_string pred str = |
764 |
let |
|
765 |
val n = size str; |
|
766 |
fun ex i = i < n andalso (pred (String.substring (str, i, 1)) orelse ex (i + 1)); |
|
767 |
in ex 0 end; |
|
6312 | 768 |
|
512
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
769 |
(*enclose in brackets*) |
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
770 |
fun enclose lpar rpar str = lpar ^ str ^ rpar; |
6642 | 771 |
fun unenclose str = String.substring (str, 1, size str - 2); |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
772 |
|
233 | 773 |
(*simple quoting (does not escape special chars)*) |
512
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
774 |
val quote = enclose "\"" "\""; |
233 | 775 |
|
4212 | 776 |
(*space_implode "..." (explode "hello") = "h...e...l...l...o"*) |
233 | 777 |
fun space_implode a bs = implode (separate a bs); |
778 |
||
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
779 |
val commas = space_implode ", "; |
380 | 780 |
val commas_quote = commas o map quote; |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
781 |
|
233 | 782 |
(*concatenate messages, one per line, into a string*) |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
783 |
val cat_lines = space_implode "\n"; |
233 | 784 |
|
4212 | 785 |
(*space_explode "." "h.e..l.lo" = ["h", "e", "", "l", "lo"]*) |
3832
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
786 |
fun space_explode _ "" = [] |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
787 |
| space_explode sep str = |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
788 |
let |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
789 |
fun expl chs = |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
790 |
(case take_prefix (not_equal sep) chs of |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
791 |
(cs, []) => [implode cs] |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
792 |
| (cs, _ :: cs') => implode cs :: expl cs'); |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
793 |
in expl (explode str) end; |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
794 |
|
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
795 |
val split_lines = space_explode "\n"; |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
796 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
797 |
fun prefix_lines "" txt = txt |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
798 |
| prefix_lines prfx txt = txt |> split_lines |> map (fn s => prfx ^ s) |> cat_lines; |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
799 |
|
7712 | 800 |
(*untabify*) |
801 |
fun untabify chs = |
|
802 |
let |
|
803 |
val tab_width = 8; |
|
804 |
||
805 |
fun untab (_, "\n") = (0, ["\n"]) |
|
9118 | 806 |
| untab (pos, "\t") = |
807 |
let val d = tab_width - (pos mod tab_width) in (pos + d, replicate d " ") end |
|
7712 | 808 |
| untab (pos, c) = (pos + 1, [c]); |
809 |
in |
|
810 |
if not (exists (equal "\t") chs) then chs |
|
811 |
else flat (#2 (foldl_map untab (0, chs))) |
|
812 |
end; |
|
813 |
||
5285 | 814 |
(*append suffix*) |
815 |
fun suffix sfx s = s ^ sfx; |
|
816 |
||
817 |
(*remove suffix*) |
|
818 |
fun unsuffix sfx s = |
|
819 |
let |
|
820 |
val cs = explode s; |
|
821 |
val prfx_len = size s - size sfx; |
|
822 |
in |
|
823 |
if prfx_len >= 0 andalso implode (drop (prfx_len, cs)) = sfx then |
|
824 |
implode (take (prfx_len, cs)) |
|
825 |
else raise LIST "unsuffix" |
|
826 |
end; |
|
827 |
||
15060 | 828 |
(*remove prefix*) |
829 |
fun unprefix prfx s = |
|
830 |
let val (prfx', sfx) = splitAt (size prfx, explode s) |
|
831 |
in |
|
832 |
if implode prfx' = prfx then implode sfx |
|
833 |
else raise LIST "unprefix" |
|
834 |
end; |
|
835 |
||
10951 | 836 |
fun replicate_string 0 _ = "" |
837 |
| replicate_string 1 a = a |
|
838 |
| replicate_string k a = |
|
839 |
if k mod 2 = 0 then replicate_string (k div 2) (a ^ a) |
|
840 |
else replicate_string (k div 2) (a ^ a) ^ a; |
|
841 |
||
3832
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
842 |
|
233 | 843 |
|
844 |
(** lists as sets **) |
|
845 |
||
846 |
(*membership in a list*) |
|
847 |
fun x mem [] = false |
|
848 |
| x mem (y :: ys) = x = y orelse x mem ys; |
|
0 | 849 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
850 |
(*membership in a list, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
851 |
fun (x:int) mem_int [] = false |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
852 |
| x mem_int (y :: ys) = x = y orelse x mem_int ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
853 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
854 |
(*membership in a list, optimized version for strings*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
855 |
fun (x:string) mem_string [] = false |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
856 |
| x mem_string (y :: ys) = x = y orelse x mem_string ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
857 |
|
0 | 858 |
(*generalized membership test*) |
233 | 859 |
fun gen_mem eq (x, []) = false |
860 |
| gen_mem eq (x, y :: ys) = eq (x, y) orelse gen_mem eq (x, ys); |
|
861 |
||
862 |
||
863 |
(*insertion into list if not already there*) |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
864 |
fun (x ins xs) = if x mem xs then xs else x :: xs; |
0 | 865 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
866 |
(*insertion into list, optimized version for ints*) |
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
867 |
fun (x ins_int xs) = if x mem_int xs then xs else x :: xs; |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
868 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
869 |
(*insertion into list, optimized version for strings*) |
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
870 |
fun (x ins_string xs) = if x mem_string xs then xs else x :: xs; |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
871 |
|
0 | 872 |
(*generalized insertion*) |
233 | 873 |
fun gen_ins eq (x, xs) = if gen_mem eq (x, xs) then xs else x :: xs; |
874 |
||
875 |
||
876 |
(*union of sets represented as lists: no repetitions*) |
|
877 |
fun xs union [] = xs |
|
878 |
| [] union ys = ys |
|
879 |
| (x :: xs) union ys = xs union (x ins ys); |
|
0 | 880 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
881 |
(*union of sets, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
882 |
fun (xs:int list) union_int [] = xs |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
883 |
| [] union_int ys = ys |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
884 |
| (x :: xs) union_int ys = xs union_int (x ins_int ys); |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
885 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
886 |
(*union of sets, optimized version for strings*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
887 |
fun (xs:string list) union_string [] = xs |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
888 |
| [] union_string ys = ys |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
889 |
| (x :: xs) union_string ys = xs union_string (x ins_string ys); |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
890 |
|
0 | 891 |
(*generalized union*) |
233 | 892 |
fun gen_union eq (xs, []) = xs |
893 |
| gen_union eq ([], ys) = ys |
|
894 |
| gen_union eq (x :: xs, ys) = gen_union eq (xs, gen_ins eq (x, ys)); |
|
895 |
||
896 |
||
897 |
(*intersection*) |
|
898 |
fun [] inter ys = [] |
|
899 |
| (x :: xs) inter ys = |
|
900 |
if x mem ys then x :: (xs inter ys) else xs inter ys; |
|
901 |
||
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
902 |
(*intersection, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
903 |
fun ([]:int list) inter_int ys = [] |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
904 |
| (x :: xs) inter_int ys = |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
905 |
if x mem_int ys then x :: (xs inter_int ys) else xs inter_int ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
906 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
907 |
(*intersection, optimized version for strings *) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
908 |
fun ([]:string list) inter_string ys = [] |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
909 |
| (x :: xs) inter_string ys = |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
910 |
if x mem_string ys then x :: (xs inter_string ys) else xs inter_string ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
911 |
|
7090 | 912 |
(*generalized intersection*) |
913 |
fun gen_inter eq ([], ys) = [] |
|
12284 | 914 |
| gen_inter eq (x::xs, ys) = |
7090 | 915 |
if gen_mem eq (x,ys) then x :: gen_inter eq (xs, ys) |
12284 | 916 |
else gen_inter eq (xs, ys); |
7090 | 917 |
|
233 | 918 |
|
919 |
(*subset*) |
|
920 |
fun [] subset ys = true |
|
921 |
| (x :: xs) subset ys = x mem ys andalso xs subset ys; |
|
922 |
||
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
923 |
(*subset, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
924 |
fun ([]:int list) subset_int ys = true |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
925 |
| (x :: xs) subset_int ys = x mem_int ys andalso xs subset_int ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
926 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
927 |
(*subset, optimized version for strings*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
928 |
fun ([]:string list) subset_string ys = true |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
929 |
| (x :: xs) subset_string ys = x mem_string ys andalso xs subset_string ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
930 |
|
4363 | 931 |
(*set equality*) |
932 |
fun eq_set (xs, ys) = |
|
933 |
xs = ys orelse (xs subset ys andalso ys subset xs); |
|
934 |
||
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2175
diff
changeset
|
935 |
(*set equality for strings*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
936 |
fun eq_set_string ((xs:string list), ys) = |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
937 |
xs = ys orelse (xs subset_string ys andalso ys subset_string xs); |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
938 |
|
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2175
diff
changeset
|
939 |
fun gen_subset eq (xs, ys) = forall (fn x => gen_mem eq (x, ys)) xs; |
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2175
diff
changeset
|
940 |
|
265 | 941 |
|
233 | 942 |
(*removing an element from a list WITHOUT duplicates*) |
943 |
fun (y :: ys) \ x = if x = y then ys else y :: (ys \ x) |
|
944 |
| [] \ x = []; |
|
945 |
||
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
946 |
fun ys \\ xs = foldl (op \) (ys,xs); |
0 | 947 |
|
233 | 948 |
(*removing an element from a list -- possibly WITH duplicates*) |
949 |
fun gen_rem eq (xs, y) = filter_out (fn x => eq (x, y)) xs; |
|
12295 | 950 |
fun gen_rems eq (xs, ys) = filter_out (fn x => gen_mem eq (x, ys)) xs; |
233 | 951 |
|
952 |
||
953 |
(*makes a list of the distinct members of the input; preserves order, takes |
|
954 |
first of equal elements*) |
|
955 |
fun gen_distinct eq lst = |
|
956 |
let |
|
957 |
val memb = gen_mem eq; |
|
0 | 958 |
|
233 | 959 |
fun dist (rev_seen, []) = rev rev_seen |
960 |
| dist (rev_seen, x :: xs) = |
|
961 |
if memb (x, rev_seen) then dist (rev_seen, xs) |
|
962 |
else dist (x :: rev_seen, xs); |
|
963 |
in |
|
964 |
dist ([], lst) |
|
965 |
end; |
|
966 |
||
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
967 |
fun distinct l = gen_distinct (op =) l; |
233 | 968 |
|
969 |
||
970 |
(*returns the tail beginning with the first repeated element, or []*) |
|
971 |
fun findrep [] = [] |
|
972 |
| findrep (x :: xs) = if x mem xs then x :: xs else findrep xs; |
|
973 |
||
974 |
||
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
975 |
(*returns a list containing all repeated elements exactly once; preserves |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
976 |
order, takes first of equal elements*) |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
977 |
fun gen_duplicates eq lst = |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
978 |
let |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
979 |
val memb = gen_mem eq; |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
980 |
|
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
981 |
fun dups (rev_dups, []) = rev rev_dups |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
982 |
| dups (rev_dups, x :: xs) = |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
983 |
if memb (x, rev_dups) orelse not (memb (x, xs)) then |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
984 |
dups (rev_dups, xs) |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
985 |
else dups (x :: rev_dups, xs); |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
986 |
in |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
987 |
dups ([], lst) |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
988 |
end; |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
989 |
|
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
990 |
fun duplicates l = gen_duplicates (op =) l; |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
991 |
|
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
992 |
|
233 | 993 |
|
994 |
(** association lists **) |
|
0 | 995 |
|
233 | 996 |
(*association list lookup*) |
15531 | 997 |
fun assoc ([], key) = NONE |
233 | 998 |
| assoc ((keyi, xi) :: pairs, key) = |
15531 | 999 |
if key = keyi then SOME xi else assoc (pairs, key); |
233 | 1000 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
1001 |
(*association list lookup, optimized version for ints*) |
15531 | 1002 |
fun assoc_int ([], (key:int)) = NONE |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1003 |
| assoc_int ((keyi, xi) :: pairs, key) = |
15531 | 1004 |
if key = keyi then SOME xi else assoc_int (pairs, key); |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1005 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
1006 |
(*association list lookup, optimized version for strings*) |
15531 | 1007 |
fun assoc_string ([], (key:string)) = NONE |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1008 |
| assoc_string ((keyi, xi) :: pairs, key) = |
15531 | 1009 |
if key = keyi then SOME xi else assoc_string (pairs, key); |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1010 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
1011 |
(*association list lookup, optimized version for string*ints*) |
15531 | 1012 |
fun assoc_string_int ([], (key:string*int)) = NONE |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1013 |
| assoc_string_int ((keyi, xi) :: pairs, key) = |
15531 | 1014 |
if key = keyi then SOME xi else assoc_string_int (pairs, key); |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
1015 |
|
233 | 1016 |
fun assocs ps x = |
1017 |
(case assoc (ps, x) of |
|
15531 | 1018 |
NONE => [] |
1019 |
| SOME ys => ys); |
|
233 | 1020 |
|
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
1021 |
(*two-fold association list lookup*) |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
1022 |
fun assoc2 (aal, (key1, key2)) = |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
1023 |
(case assoc (aal, key1) of |
15531 | 1024 |
SOME al => assoc (al, key2) |
1025 |
| NONE => NONE); |
|
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
1026 |
|
233 | 1027 |
(*generalized association list lookup*) |
15531 | 1028 |
fun gen_assoc eq ([], key) = NONE |
233 | 1029 |
| gen_assoc eq ((keyi, xi) :: pairs, key) = |
15531 | 1030 |
if eq (key, keyi) then SOME xi else gen_assoc eq (pairs, key); |
233 | 1031 |
|
1032 |
(*association list update*) |
|
1033 |
fun overwrite (al, p as (key, _)) = |
|
1034 |
let fun over ((q as (keyi, _)) :: pairs) = |
|
1035 |
if keyi = key then p :: pairs else q :: (over pairs) |
|
1036 |
| over [] = [p] |
|
1037 |
in over al end; |
|
1038 |
||
2522 | 1039 |
fun gen_overwrite eq (al, p as (key, _)) = |
1040 |
let fun over ((q as (keyi, _)) :: pairs) = |
|
1041 |
if eq (keyi, key) then p :: pairs else q :: (over pairs) |
|
1042 |
| over [] = [p] |
|
1043 |
in over al end; |
|
1044 |
||
233 | 1045 |
|
12284 | 1046 |
(* lists as tables *) |
233 | 1047 |
|
12284 | 1048 |
fun gen_merge_lists _ xs [] = xs |
1049 |
| gen_merge_lists _ [] ys = ys |
|
1050 |
| gen_merge_lists eq xs ys = xs @ gen_rems eq (ys, xs); |
|
0 | 1051 |
|
12284 | 1052 |
fun gen_merge_lists' _ xs [] = xs |
1053 |
| gen_merge_lists' _ [] ys = ys |
|
12295 | 1054 |
| gen_merge_lists' eq xs ys = gen_rems eq (ys, xs) @ xs; |
0 | 1055 |
|
12284 | 1056 |
fun merge_lists xs ys = gen_merge_lists (op =) xs ys; |
1057 |
fun merge_lists' xs ys = gen_merge_lists' (op =) xs ys; |
|
1058 |
fun merge_alists al = gen_merge_lists eq_fst al; |
|
15263 | 1059 |
fun merge_alists' al = gen_merge_lists' eq_fst al; |
380 | 1060 |
|
0 | 1061 |
|
1062 |
||
233 | 1063 |
(** balanced trees **) |
1064 |
||
1065 |
exception Balance; (*indicates non-positive argument to balancing fun*) |
|
1066 |
||
1067 |
(*balanced folding; avoids deep nesting*) |
|
1068 |
fun fold_bal f [x] = x |
|
1069 |
| fold_bal f [] = raise Balance |
|
1070 |
| fold_bal f xs = |
|
13629 | 1071 |
let val (ps,qs) = splitAt(length xs div 2, xs) |
1072 |
in f (fold_bal f ps, fold_bal f qs) end; |
|
233 | 1073 |
|
1074 |
(*construct something of the form f(...g(...(x)...)) for balanced access*) |
|
1075 |
fun access_bal (f, g, x) n i = |
|
1076 |
let fun acc n i = (*1<=i<=n*) |
|
1077 |
if n=1 then x else |
|
1078 |
let val n2 = n div 2 |
|
1079 |
in if i<=n2 then f (acc n2 i) |
|
1080 |
else g (acc (n-n2) (i-n2)) |
|
1081 |
end |
|
1082 |
in if 1<=i andalso i<=n then acc n i else raise Balance end; |
|
1083 |
||
1084 |
(*construct ALL such accesses; could try harder to share recursive calls!*) |
|
1085 |
fun accesses_bal (f, g, x) n = |
|
1086 |
let fun acc n = |
|
1087 |
if n=1 then [x] else |
|
1088 |
let val n2 = n div 2 |
|
1089 |
val acc2 = acc n2 |
|
1090 |
in if n-n2=n2 then map f acc2 @ map g acc2 |
|
1091 |
else map f acc2 @ map g (acc (n-n2)) end |
|
1092 |
in if 1<=n then acc n else raise Balance end; |
|
1093 |
||
1094 |
||
1095 |
||
2506 | 1096 |
(** orders **) |
1097 |
||
4445 | 1098 |
fun rev_order LESS = GREATER |
1099 |
| rev_order EQUAL = EQUAL |
|
1100 |
| rev_order GREATER = LESS; |
|
1101 |
||
4479 | 1102 |
(*assume rel is a linear strict order*) |
4445 | 1103 |
fun make_ord rel (x, y) = |
1104 |
if rel (x, y) then LESS |
|
1105 |
else if rel (y, x) then GREATER |
|
1106 |
else EQUAL; |
|
1107 |
||
15051
0dbbab9f77fe
int_ord = Int.compare, string_ord = String.compare;
wenzelm
parents:
15035
diff
changeset
|
1108 |
val int_ord = Int.compare; |
0dbbab9f77fe
int_ord = Int.compare, string_ord = String.compare;
wenzelm
parents:
15035
diff
changeset
|
1109 |
val string_ord = String.compare; |
2506 | 1110 |
|
4343 | 1111 |
(*lexicographic product*) |
1112 |
fun prod_ord a_ord b_ord ((x, y), (x', y')) = |
|
1113 |
(case a_ord (x, x') of EQUAL => b_ord (y, y') | ord => ord); |
|
1114 |
||
1115 |
(*dictionary order -- in general NOT well-founded!*) |
|
1116 |
fun dict_ord _ ([], []) = EQUAL |
|
1117 |
| dict_ord _ ([], _ :: _) = LESS |
|
1118 |
| dict_ord _ (_ :: _, []) = GREATER |
|
1119 |
| dict_ord elem_ord (x :: xs, y :: ys) = |
|
1120 |
(case elem_ord (x, y) of EQUAL => dict_ord elem_ord (xs, ys) | ord => ord); |
|
1121 |
||
1122 |
(*lexicographic product of lists*) |
|
1123 |
fun list_ord elem_ord (xs, ys) = |
|
1124 |
prod_ord int_ord (dict_ord elem_ord) ((length xs, xs), (length ys, ys)); |
|
1125 |
||
2506 | 1126 |
|
4621 | 1127 |
(* sorting *) |
1128 |
||
1129 |
(*quicksort (stable, i.e. does not reorder equal elements)*) |
|
1130 |
fun sort ord = |
|
1131 |
let |
|
1132 |
fun qsort xs = |
|
1133 |
let val len = length xs in |
|
1134 |
if len <= 1 then xs |
|
1135 |
else |
|
1136 |
let val (lts, eqs, gts) = part (nth_elem (len div 2, xs)) xs in |
|
1137 |
qsort lts @ eqs @ qsort gts |
|
1138 |
end |
|
1139 |
end |
|
1140 |
and part _ [] = ([], [], []) |
|
1141 |
| part pivot (x :: xs) = add (ord (x, pivot)) x (part pivot xs) |
|
1142 |
and add LESS x (lts, eqs, gts) = (x :: lts, eqs, gts) |
|
1143 |
| add EQUAL x (lts, eqs, gts) = (lts, x :: eqs, gts) |
|
1144 |
| add GREATER x (lts, eqs, gts) = (lts, eqs, x :: gts); |
|
1145 |
in qsort end; |
|
1146 |
||
1147 |
(*sort strings*) |
|
1148 |
val sort_strings = sort string_ord; |
|
1149 |
fun sort_wrt sel xs = sort (string_ord o pairself sel) xs; |
|
1150 |
||
11514 | 1151 |
fun unique_strings ([]: string list) = [] |
1152 |
| unique_strings [x] = [x] |
|
1153 |
| unique_strings (x :: y :: ys) = |
|
1154 |
if x = y then unique_strings (y :: ys) |
|
1155 |
else x :: unique_strings (y :: ys); |
|
4621 | 1156 |
|
2506 | 1157 |
|
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1158 |
(** random numbers **) |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1159 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1160 |
exception RANDOM; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1161 |
|
14618
068bb99f3ebd
Fixed bug in rmod that caused an overflow exception in SML/NJ.
berghofe
parents:
14472
diff
changeset
|
1162 |
fun rmod x y = x - y * Real.realFloor (x / y); |
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1163 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1164 |
local |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1165 |
val a = 16807.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1166 |
val m = 2147483647.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1167 |
val random_seed = ref 1.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1168 |
in |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1169 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1170 |
fun random () = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1171 |
let val r = rmod (a * !random_seed) m |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1172 |
in (random_seed := r; r) end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1173 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1174 |
end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1175 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1176 |
fun random_range l h = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1177 |
if h < l orelse l < 0 then raise RANDOM |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1178 |
else l + Real.floor (rmod (random ()) (real (h - l + 1))); |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1179 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1180 |
fun one_of xs = nth_elem (random_range 0 (length xs - 1), xs); |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1181 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1182 |
fun frequency xs = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1183 |
let |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1184 |
val sum = foldl op + (0, map fst xs); |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1185 |
fun pick n ((k, x) :: xs) = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1186 |
if n <= k then x else pick (n - k) xs |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1187 |
in pick (random_range 1 sum) xs end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1188 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1189 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1190 |
(** current directory **) |
233 | 1191 |
|
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
1192 |
val cd = OS.FileSys.chDir; |
2317 | 1193 |
val pwd = OS.FileSys.getDir; |
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
1194 |
|
3606 | 1195 |
|
233 | 1196 |
|
10692 | 1197 |
(** rational numbers **) |
1198 |
||
1199 |
datatype rat = Rat of bool * int * int |
|
1200 |
||
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1201 |
exception RAT of string; |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1202 |
|
10692 | 1203 |
fun rep_rat(Rat(a,p,q)) = (if a then p else ~p,q) |
1204 |
||
1205 |
fun ratnorm(a,p,q) = if p=0 then Rat(a,0,1) else |
|
1206 |
let val absp = abs p |
|
1207 |
val m = gcd(absp,q) |
|
1208 |
in Rat(a = (0 <= p), absp div m, q div m) end; |
|
1209 |
||
1210 |
fun ratadd(Rat(a,p,q),Rat(b,r,s)) = |
|
1211 |
let val den = lcm(q,s) |
|
1212 |
val p = p*(den div q) and r = r*(den div s) |
|
1213 |
val num = (if a then p else ~p) + (if b then r else ~r) |
|
1214 |
in ratnorm(true,num,den) end; |
|
1215 |
||
1216 |
fun ratmul(Rat(a,p,q),Rat(b,r,s)) = ratnorm(a=b,p*r,q*s) |
|
1217 |
||
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1218 |
fun ratinv(Rat(a,p,q)) = if p=0 then raise RAT "ratinv" else Rat(a,q,p) |
10692 | 1219 |
|
1220 |
fun int_ratdiv(p,q) = |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1221 |
if q=0 then raise RAT "int_ratdiv" else ratnorm(0<=q, p, abs q) |
10692 | 1222 |
|
1223 |
fun ratneg(Rat(b,p,q)) = Rat(not b,p,q); |
|
1224 |
||
1225 |
fun rat_of_int i = if i < 0 then Rat(false,abs i,1) else Rat(true,i,1); |
|
1226 |
||
1227 |
||
4621 | 1228 |
(** misc **) |
233 | 1229 |
|
1230 |
(*use the keyfun to make a list of (x, key) pairs*) |
|
0 | 1231 |
fun make_keylist (keyfun: 'a->'b) : 'a list -> ('a * 'b) list = |
233 | 1232 |
let fun keypair x = (x, keyfun x) |
1233 |
in map keypair end; |
|
0 | 1234 |
|
233 | 1235 |
(*given a list of (x, key) pairs and a searchkey |
0 | 1236 |
return the list of xs from each pair whose key equals searchkey*) |
1237 |
fun keyfilter [] searchkey = [] |
|
233 | 1238 |
| keyfilter ((x, key) :: pairs) searchkey = |
1239 |
if key = searchkey then x :: keyfilter pairs searchkey |
|
1240 |
else keyfilter pairs searchkey; |
|
0 | 1241 |
|
1242 |
||
1243 |
(*Partition list into elements that satisfy predicate and those that don't. |
|
233 | 1244 |
Preserves order of elements in both lists.*) |
0 | 1245 |
fun partition (pred: 'a->bool) (ys: 'a list) : ('a list * 'a list) = |
1246 |
let fun part ([], answer) = answer |
|
233 | 1247 |
| part (x::xs, (ys, ns)) = if pred(x) |
1248 |
then part (xs, (x::ys, ns)) |
|
1249 |
else part (xs, (ys, x::ns)) |
|
1250 |
in part (rev ys, ([], [])) end; |
|
0 | 1251 |
|
1252 |
||
1253 |
fun partition_eq (eq:'a * 'a -> bool) = |
|
1254 |
let fun part [] = [] |
|
233 | 1255 |
| part (x::ys) = let val (xs, xs') = partition (apl(x, eq)) ys |
1256 |
in (x::xs)::(part xs') end |
|
0 | 1257 |
in part end; |
1258 |
||
1259 |
||
233 | 1260 |
(*Partition a list into buckets [ bi, b(i+1), ..., bj ] |
0 | 1261 |
putting x in bk if p(k)(x) holds. Preserve order of elements if possible.*) |
1262 |
fun partition_list p i j = |
|
233 | 1263 |
let fun part k xs = |
1264 |
if k>j then |
|
0 | 1265 |
(case xs of [] => [] |
1266 |
| _ => raise LIST "partition_list") |
|
1267 |
else |
|
233 | 1268 |
let val (ns, rest) = partition (p k) xs; |
1269 |
in ns :: part(k+1)rest end |
|
0 | 1270 |
in part i end; |
1271 |
||
1272 |
||
233 | 1273 |
(* generating identifiers *) |
0 | 1274 |
|
4063 | 1275 |
(** Freshly generated identifiers; supplied prefix MUST start with a letter **) |
0 | 1276 |
local |
4063 | 1277 |
(*Maps 0-63 to A-Z, a-z, 0-9 or _ or ' for generating random identifiers*) |
1278 |
fun char i = if i<26 then chr (ord "A" + i) |
|
5904 | 1279 |
else if i<52 then chr (ord "a" + i - 26) |
1280 |
else if i<62 then chr (ord"0" + i - 52) |
|
1281 |
else if i=62 then "_" |
|
1282 |
else (*i=63*) "'"; |
|
4063 | 1283 |
|
1284 |
val charVec = Vector.tabulate (64, char); |
|
1285 |
||
5904 | 1286 |
fun newid n = |
1287 |
let |
|
4284 | 1288 |
in implode (map (fn i => Vector.sub(charVec,i)) (radixpand (64,n))) end; |
2003 | 1289 |
|
4284 | 1290 |
val seedr = ref 0; |
0 | 1291 |
|
4063 | 1292 |
in |
4284 | 1293 |
|
12346 | 1294 |
fun gensym pre = pre ^ (#1(newid (!seedr), inc seedr)); |
2003 | 1295 |
|
4063 | 1296 |
end; |
1297 |
||
1298 |
||
233 | 1299 |
(* lexical scanning *) |
0 | 1300 |
|
233 | 1301 |
(*scan a list of characters into "words" composed of "letters" (recognized by |
1302 |
is_let) and separated by any number of non-"letters"*) |
|
1303 |
fun scanwords is_let cs = |
|
0 | 1304 |
let fun scan1 [] = [] |
233 | 1305 |
| scan1 cs = |
1306 |
let val (lets, rest) = take_prefix is_let cs |
|
1307 |
in implode lets :: scanwords is_let rest end; |
|
1308 |
in scan1 (#2 (take_prefix (not o is_let) cs)) end; |
|
24
f3d4ff75d9f2
added functions that operate on filenames: split_filename (originally located
clasohm
parents:
0
diff
changeset
|
1309 |
|
4212 | 1310 |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
1311 |
end; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
1312 |
|
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
1313 |
open Library; |