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