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