wenzelm@41
|
1 |
(* Title: Pure/library.ML
|
clasohm@0
|
2 |
ID: $Id$
|
wenzelm@233
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory
|
clasohm@0
|
4 |
Copyright 1992 University of Cambridge
|
clasohm@0
|
5 |
|
wenzelm@233
|
6 |
Basic library: functions, options, pairs, booleans, lists, integers,
|
wenzelm@233
|
7 |
strings, lists as sets, association lists, generic tables, balanced trees,
|
wenzelm@2506
|
8 |
orders, input / output, timing, filenames, misc functions.
|
clasohm@0
|
9 |
*)
|
clasohm@0
|
10 |
|
berghofe@1576
|
11 |
infix |> ~~ \ \\ orelf ins ins_string ins_int orf andf prefix upto downto
|
paulson@2175
|
12 |
mem mem_int mem_string union union_int union_string
|
paulson@2175
|
13 |
inter inter_int inter_string subset subset_int subset_string subdir_of;
|
clasohm@1364
|
14 |
|
clasohm@1364
|
15 |
|
clasohm@1364
|
16 |
structure Library =
|
clasohm@1364
|
17 |
struct
|
clasohm@0
|
18 |
|
wenzelm@233
|
19 |
(** functions **)
|
clasohm@0
|
20 |
|
wenzelm@233
|
21 |
(*handy combinators*)
|
wenzelm@233
|
22 |
fun curry f x y = f (x, y);
|
wenzelm@233
|
23 |
fun uncurry f (x, y) = f x y;
|
wenzelm@233
|
24 |
fun I x = x;
|
wenzelm@233
|
25 |
fun K x y = x;
|
clasohm@0
|
26 |
|
wenzelm@380
|
27 |
(*reverse apply*)
|
wenzelm@410
|
28 |
fun (x |> f) = f x;
|
wenzelm@380
|
29 |
|
wenzelm@233
|
30 |
(*combine two functions forming the union of their domains*)
|
paulson@2175
|
31 |
fun (f orelf g) = fn x => f x handle Match => g x;
|
clasohm@0
|
32 |
|
wenzelm@233
|
33 |
(*application of (infix) operator to its left or right argument*)
|
wenzelm@233
|
34 |
fun apl (x, f) y = f (x, y);
|
wenzelm@233
|
35 |
fun apr (f, y) x = f (x, y);
|
clasohm@0
|
36 |
|
wenzelm@233
|
37 |
(*functional for pairs*)
|
wenzelm@233
|
38 |
fun pairself f (x, y) = (f x, f y);
|
clasohm@0
|
39 |
|
wenzelm@233
|
40 |
(*function exponentiation: f(...(f x)...) with n applications of f*)
|
wenzelm@233
|
41 |
fun funpow n f x =
|
wenzelm@233
|
42 |
let fun rep (0, x) = x
|
wenzelm@233
|
43 |
| rep (n, x) = rep (n - 1, f x)
|
wenzelm@233
|
44 |
in rep (n, x) end;
|
wenzelm@160
|
45 |
|
wenzelm@160
|
46 |
|
wenzelm@160
|
47 |
|
wenzelm@2471
|
48 |
(** stamps **)
|
wenzelm@2471
|
49 |
|
wenzelm@2471
|
50 |
type stamp = unit ref;
|
wenzelm@2471
|
51 |
val stamp: unit -> stamp = ref;
|
wenzelm@2471
|
52 |
|
wenzelm@2471
|
53 |
|
wenzelm@2471
|
54 |
|
wenzelm@233
|
55 |
(** options **)
|
clasohm@0
|
56 |
|
clasohm@0
|
57 |
datatype 'a option = None | Some of 'a;
|
clasohm@0
|
58 |
|
clasohm@0
|
59 |
exception OPTION of string;
|
clasohm@0
|
60 |
|
clasohm@0
|
61 |
fun the (Some x) = x
|
clasohm@0
|
62 |
| the None = raise OPTION "the";
|
clasohm@0
|
63 |
|
wenzelm@255
|
64 |
fun if_none None y = y
|
wenzelm@255
|
65 |
| if_none (Some x) _ = x;
|
wenzelm@255
|
66 |
|
clasohm@0
|
67 |
fun is_some (Some _) = true
|
clasohm@0
|
68 |
| is_some None = false;
|
clasohm@0
|
69 |
|
clasohm@0
|
70 |
fun is_none (Some _) = false
|
clasohm@0
|
71 |
| is_none None = true;
|
clasohm@0
|
72 |
|
wenzelm@233
|
73 |
fun apsome f (Some x) = Some (f x)
|
wenzelm@233
|
74 |
| apsome _ None = None;
|
clasohm@0
|
75 |
|
wenzelm@4046
|
76 |
fun merge_opts _ (None, None) = None
|
wenzelm@4046
|
77 |
| merge_opts _ (some as Some _, None) = some
|
wenzelm@4046
|
78 |
| merge_opts _ (None, some as Some _) = some
|
wenzelm@4046
|
79 |
| merge_opts merge (Some x, Some y) = Some (merge (x, y));
|
wenzelm@4046
|
80 |
|
wenzelm@233
|
81 |
|
wenzelm@233
|
82 |
|
wenzelm@233
|
83 |
(** pairs **)
|
wenzelm@233
|
84 |
|
wenzelm@233
|
85 |
fun pair x y = (x, y);
|
wenzelm@233
|
86 |
fun rpair x y = (y, x);
|
wenzelm@233
|
87 |
|
wenzelm@233
|
88 |
fun fst (x, y) = x;
|
wenzelm@233
|
89 |
fun snd (x, y) = y;
|
wenzelm@233
|
90 |
|
wenzelm@233
|
91 |
fun eq_fst ((x1, _), (x2, _)) = x1 = x2;
|
wenzelm@233
|
92 |
fun eq_snd ((_, y1), (_, y2)) = y1 = y2;
|
wenzelm@233
|
93 |
|
wenzelm@233
|
94 |
fun swap (x, y) = (y, x);
|
wenzelm@233
|
95 |
|
wenzelm@233
|
96 |
(*apply the function to a component of a pair*)
|
wenzelm@233
|
97 |
fun apfst f (x, y) = (f x, y);
|
wenzelm@233
|
98 |
fun apsnd f (x, y) = (x, f y);
|
wenzelm@233
|
99 |
|
wenzelm@233
|
100 |
|
wenzelm@233
|
101 |
|
wenzelm@233
|
102 |
(** booleans **)
|
wenzelm@233
|
103 |
|
wenzelm@233
|
104 |
(* equality *)
|
wenzelm@233
|
105 |
|
wenzelm@233
|
106 |
fun equal x y = x = y;
|
wenzelm@233
|
107 |
fun not_equal x y = x <> y;
|
wenzelm@233
|
108 |
|
wenzelm@233
|
109 |
|
wenzelm@233
|
110 |
(* operators for combining predicates *)
|
wenzelm@233
|
111 |
|
paulson@2175
|
112 |
fun (p orf q) = fn x => p x orelse q x;
|
wenzelm@233
|
113 |
|
paulson@2175
|
114 |
fun (p andf q) = fn x => p x andalso q x;
|
wenzelm@233
|
115 |
|
wenzelm@233
|
116 |
fun notf p x = not (p x);
|
clasohm@0
|
117 |
|
wenzelm@233
|
118 |
|
wenzelm@233
|
119 |
(* predicates on lists *)
|
wenzelm@233
|
120 |
|
wenzelm@233
|
121 |
fun orl [] = false
|
wenzelm@233
|
122 |
| orl (x :: xs) = x orelse orl xs;
|
wenzelm@233
|
123 |
|
wenzelm@233
|
124 |
fun andl [] = true
|
wenzelm@233
|
125 |
| andl (x :: xs) = x andalso andl xs;
|
wenzelm@233
|
126 |
|
paulson@3246
|
127 |
(*Several object-logics declare theories named List or Option, hiding the
|
paulson@3246
|
128 |
eponymous basis library structures.*)
|
paulson@3246
|
129 |
structure List_ = List
|
paulson@3246
|
130 |
and Option_ = Option;
|
paulson@2271
|
131 |
|
wenzelm@233
|
132 |
(*exists pred [x1, ..., xn] ===> pred x1 orelse ... orelse pred xn*)
|
wenzelm@233
|
133 |
fun exists (pred: 'a -> bool) : 'a list -> bool =
|
wenzelm@233
|
134 |
let fun boolf [] = false
|
wenzelm@233
|
135 |
| boolf (x :: xs) = pred x orelse boolf xs
|
wenzelm@233
|
136 |
in boolf end;
|
wenzelm@233
|
137 |
|
wenzelm@233
|
138 |
(*forall pred [x1, ..., xn] ===> pred x1 andalso ... andalso pred xn*)
|
wenzelm@233
|
139 |
fun forall (pred: 'a -> bool) : 'a list -> bool =
|
wenzelm@233
|
140 |
let fun boolf [] = true
|
wenzelm@233
|
141 |
| boolf (x :: xs) = pred x andalso boolf xs
|
wenzelm@233
|
142 |
in boolf end;
|
clasohm@0
|
143 |
|
wenzelm@233
|
144 |
|
wenzelm@380
|
145 |
(* flags *)
|
wenzelm@380
|
146 |
|
wenzelm@380
|
147 |
fun set flag = (flag := true; true);
|
wenzelm@380
|
148 |
fun reset flag = (flag := false; false);
|
wenzelm@380
|
149 |
fun toggle flag = (flag := not (! flag); ! flag);
|
wenzelm@380
|
150 |
|
wenzelm@2978
|
151 |
fun setmp flag value f x =
|
wenzelm@2958
|
152 |
let
|
wenzelm@2958
|
153 |
val orig_value = ! flag;
|
wenzelm@2958
|
154 |
fun return y = (flag := orig_value; y);
|
wenzelm@2958
|
155 |
in
|
wenzelm@2958
|
156 |
flag := value;
|
wenzelm@2958
|
157 |
return (f x handle exn => (return (); raise exn))
|
wenzelm@2958
|
158 |
end;
|
wenzelm@2958
|
159 |
|
wenzelm@380
|
160 |
|
wenzelm@233
|
161 |
|
wenzelm@233
|
162 |
(** lists **)
|
wenzelm@233
|
163 |
|
wenzelm@233
|
164 |
exception LIST of string;
|
wenzelm@233
|
165 |
|
wenzelm@233
|
166 |
fun null [] = true
|
wenzelm@233
|
167 |
| null (_ :: _) = false;
|
wenzelm@233
|
168 |
|
wenzelm@233
|
169 |
fun hd [] = raise LIST "hd"
|
wenzelm@233
|
170 |
| hd (x :: _) = x;
|
wenzelm@233
|
171 |
|
wenzelm@233
|
172 |
fun tl [] = raise LIST "tl"
|
wenzelm@233
|
173 |
| tl (_ :: xs) = xs;
|
wenzelm@233
|
174 |
|
wenzelm@233
|
175 |
fun cons x xs = x :: xs;
|
wenzelm@233
|
176 |
|
wenzelm@233
|
177 |
|
wenzelm@233
|
178 |
(* fold *)
|
wenzelm@233
|
179 |
|
wenzelm@233
|
180 |
(*the following versions of fold are designed to fit nicely with infixes*)
|
clasohm@0
|
181 |
|
wenzelm@233
|
182 |
(* (op @) (e, [x1, ..., xn]) ===> ((e @ x1) @ x2) ... @ xn
|
wenzelm@233
|
183 |
for operators that associate to the left (TAIL RECURSIVE)*)
|
wenzelm@233
|
184 |
fun foldl (f: 'a * 'b -> 'a) : 'a * 'b list -> 'a =
|
wenzelm@233
|
185 |
let fun itl (e, []) = e
|
wenzelm@233
|
186 |
| itl (e, a::l) = itl (f(e, a), l)
|
wenzelm@233
|
187 |
in itl end;
|
wenzelm@233
|
188 |
|
wenzelm@233
|
189 |
(* (op @) ([x1, ..., xn], e) ===> x1 @ (x2 ... @ (xn @ e))
|
wenzelm@233
|
190 |
for operators that associate to the right (not tail recursive)*)
|
wenzelm@233
|
191 |
fun foldr f (l, e) =
|
wenzelm@233
|
192 |
let fun itr [] = e
|
wenzelm@233
|
193 |
| itr (a::l) = f(a, itr l)
|
wenzelm@233
|
194 |
in itr l end;
|
wenzelm@233
|
195 |
|
wenzelm@233
|
196 |
(* (op @) [x1, ..., xn] ===> x1 @ (x2 ... @ (x[n-1] @ xn))
|
wenzelm@233
|
197 |
for n > 0, operators that associate to the right (not tail recursive)*)
|
wenzelm@233
|
198 |
fun foldr1 f l =
|
wenzelm@233
|
199 |
let fun itr [x] = x (* FIXME [] case: elim warn (?) *)
|
wenzelm@233
|
200 |
| itr (x::l) = f(x, itr l)
|
wenzelm@233
|
201 |
in itr l end;
|
wenzelm@233
|
202 |
|
wenzelm@233
|
203 |
|
wenzelm@233
|
204 |
(* basic list functions *)
|
wenzelm@233
|
205 |
|
wenzelm@233
|
206 |
(*length of a list, should unquestionably be a standard function*)
|
wenzelm@233
|
207 |
local fun length1 (n, []) = n (*TAIL RECURSIVE*)
|
wenzelm@233
|
208 |
| length1 (n, x :: xs) = length1 (n + 1, xs)
|
wenzelm@233
|
209 |
in fun length l = length1 (0, l) end;
|
wenzelm@233
|
210 |
|
wenzelm@233
|
211 |
(*take the first n elements from a list*)
|
wenzelm@233
|
212 |
fun take (n, []) = []
|
wenzelm@233
|
213 |
| take (n, x :: xs) =
|
wenzelm@233
|
214 |
if n > 0 then x :: take (n - 1, xs) else [];
|
wenzelm@233
|
215 |
|
wenzelm@233
|
216 |
(*drop the first n elements from a list*)
|
wenzelm@233
|
217 |
fun drop (n, []) = []
|
wenzelm@233
|
218 |
| drop (n, x :: xs) =
|
wenzelm@233
|
219 |
if n > 0 then drop (n - 1, xs) else x :: xs;
|
clasohm@0
|
220 |
|
wenzelm@233
|
221 |
(*return nth element of a list, where 0 designates the first element;
|
wenzelm@233
|
222 |
raise EXCEPTION if list too short*)
|
wenzelm@233
|
223 |
fun nth_elem NL =
|
wenzelm@233
|
224 |
(case drop NL of
|
wenzelm@233
|
225 |
[] => raise LIST "nth_elem"
|
wenzelm@233
|
226 |
| x :: _ => x);
|
wenzelm@233
|
227 |
|
wenzelm@233
|
228 |
(*last element of a list*)
|
wenzelm@233
|
229 |
fun last_elem [] = raise LIST "last_elem"
|
wenzelm@233
|
230 |
| last_elem [x] = x
|
wenzelm@233
|
231 |
| last_elem (_ :: xs) = last_elem xs;
|
wenzelm@233
|
232 |
|
wenzelm@3762
|
233 |
(*rear decomposition*)
|
wenzelm@3762
|
234 |
fun split_last [] = raise LIST "split_last"
|
wenzelm@3762
|
235 |
| split_last [x] = ([], x)
|
wenzelm@3762
|
236 |
| split_last (x :: xs) = apfst (cons x) (split_last xs);
|
wenzelm@3762
|
237 |
|
wenzelm@3762
|
238 |
|
wenzelm@233
|
239 |
(*find the position of an element in a list*)
|
wenzelm@233
|
240 |
fun find (x, ys) =
|
wenzelm@233
|
241 |
let fun f (y :: ys, i) = if x = y then i else f (ys, i + 1)
|
wenzelm@233
|
242 |
| f (_, _) = raise LIST "find"
|
wenzelm@233
|
243 |
in f (ys, 0) end;
|
wenzelm@233
|
244 |
|
wenzelm@233
|
245 |
(*flatten a list of lists to a list*)
|
wenzelm@233
|
246 |
fun flat (ls: 'c list list) : 'c list = foldr (op @) (ls, []);
|
wenzelm@233
|
247 |
|
wenzelm@233
|
248 |
|
wenzelm@233
|
249 |
(*like Lisp's MAPC -- seq proc [x1, ..., xn] evaluates
|
wenzelm@233
|
250 |
(proc x1; ...; proc xn) for side effects*)
|
wenzelm@233
|
251 |
fun seq (proc: 'a -> unit) : 'a list -> unit =
|
wenzelm@233
|
252 |
let fun seqf [] = ()
|
wenzelm@233
|
253 |
| seqf (x :: xs) = (proc x; seqf xs)
|
wenzelm@233
|
254 |
in seqf end;
|
wenzelm@233
|
255 |
|
wenzelm@233
|
256 |
|
wenzelm@233
|
257 |
(*separate s [x1, x2, ..., xn] ===> [x1, s, x2, s, ..., s, xn]*)
|
wenzelm@233
|
258 |
fun separate s (x :: (xs as _ :: _)) = x :: s :: separate s xs
|
wenzelm@233
|
259 |
| separate _ xs = xs;
|
wenzelm@233
|
260 |
|
wenzelm@233
|
261 |
(*make the list [x, x, ..., x] of length n*)
|
wenzelm@233
|
262 |
fun replicate n (x: 'a) : 'a list =
|
wenzelm@233
|
263 |
let fun rep (0, xs) = xs
|
wenzelm@233
|
264 |
| rep (n, xs) = rep (n - 1, x :: xs)
|
wenzelm@233
|
265 |
in
|
wenzelm@233
|
266 |
if n < 0 then raise LIST "replicate"
|
wenzelm@233
|
267 |
else rep (n, [])
|
wenzelm@233
|
268 |
end;
|
wenzelm@233
|
269 |
|
wenzelm@233
|
270 |
|
wenzelm@233
|
271 |
(* filter *)
|
wenzelm@233
|
272 |
|
wenzelm@233
|
273 |
(*copy the list preserving elements that satisfy the predicate*)
|
wenzelm@233
|
274 |
fun filter (pred: 'a->bool) : 'a list -> 'a list =
|
clasohm@0
|
275 |
let fun filt [] = []
|
wenzelm@233
|
276 |
| filt (x :: xs) = if pred x then x :: filt xs else filt xs
|
wenzelm@233
|
277 |
in filt end;
|
clasohm@0
|
278 |
|
clasohm@0
|
279 |
fun filter_out f = filter (not o f);
|
clasohm@0
|
280 |
|
clasohm@0
|
281 |
|
wenzelm@233
|
282 |
fun mapfilter (f: 'a -> 'b option) ([]: 'a list) = [] : 'b list
|
wenzelm@233
|
283 |
| mapfilter f (x :: xs) =
|
wenzelm@233
|
284 |
(case f x of
|
wenzelm@233
|
285 |
None => mapfilter f xs
|
wenzelm@233
|
286 |
| Some y => y :: mapfilter f xs);
|
wenzelm@233
|
287 |
|
wenzelm@233
|
288 |
|
wenzelm@380
|
289 |
fun find_first _ [] = None
|
wenzelm@380
|
290 |
| find_first pred (x :: xs) =
|
wenzelm@380
|
291 |
if pred x then Some x else find_first pred xs;
|
wenzelm@380
|
292 |
|
wenzelm@380
|
293 |
|
wenzelm@233
|
294 |
(* lists of pairs *)
|
wenzelm@233
|
295 |
|
wenzelm@380
|
296 |
fun map2 _ ([], []) = []
|
wenzelm@380
|
297 |
| map2 f (x :: xs, y :: ys) = (f (x, y) :: map2 f (xs, ys))
|
wenzelm@380
|
298 |
| map2 _ _ = raise LIST "map2";
|
wenzelm@380
|
299 |
|
wenzelm@380
|
300 |
fun exists2 _ ([], []) = false
|
wenzelm@380
|
301 |
| exists2 pred (x :: xs, y :: ys) = pred (x, y) orelse exists2 pred (xs, ys)
|
wenzelm@380
|
302 |
| exists2 _ _ = raise LIST "exists2";
|
wenzelm@380
|
303 |
|
wenzelm@380
|
304 |
fun forall2 _ ([], []) = true
|
wenzelm@380
|
305 |
| forall2 pred (x :: xs, y :: ys) = pred (x, y) andalso forall2 pred (xs, ys)
|
wenzelm@380
|
306 |
| forall2 _ _ = raise LIST "forall2";
|
wenzelm@380
|
307 |
|
wenzelm@233
|
308 |
(*combine two lists forming a list of pairs:
|
wenzelm@233
|
309 |
[x1, ..., xn] ~~ [y1, ..., yn] ===> [(x1, y1), ..., (xn, yn)]*)
|
wenzelm@233
|
310 |
fun [] ~~ [] = []
|
wenzelm@233
|
311 |
| (x :: xs) ~~ (y :: ys) = (x, y) :: (xs ~~ ys)
|
wenzelm@233
|
312 |
| _ ~~ _ = raise LIST "~~";
|
wenzelm@233
|
313 |
|
wenzelm@233
|
314 |
|
wenzelm@233
|
315 |
(*inverse of ~~; the old 'split':
|
wenzelm@233
|
316 |
[(x1, y1), ..., (xn, yn)] ===> ([x1, ..., xn], [y1, ..., yn])*)
|
wenzelm@233
|
317 |
fun split_list (l: ('a * 'b) list) = (map #1 l, map #2 l);
|
wenzelm@233
|
318 |
|
wenzelm@233
|
319 |
|
wenzelm@233
|
320 |
(* prefixes, suffixes *)
|
wenzelm@233
|
321 |
|
wenzelm@233
|
322 |
fun [] prefix _ = true
|
wenzelm@233
|
323 |
| (x :: xs) prefix (y :: ys) = x = y andalso (xs prefix ys)
|
wenzelm@233
|
324 |
| _ prefix _ = false;
|
wenzelm@233
|
325 |
|
wenzelm@233
|
326 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., x(i-1)], [xi, ..., xn])
|
wenzelm@233
|
327 |
where xi is the first element that does not satisfy the predicate*)
|
wenzelm@233
|
328 |
fun take_prefix (pred : 'a -> bool) (xs: 'a list) : 'a list * 'a list =
|
wenzelm@233
|
329 |
let fun take (rxs, []) = (rev rxs, [])
|
wenzelm@255
|
330 |
| take (rxs, x :: xs) =
|
wenzelm@255
|
331 |
if pred x then take(x :: rxs, xs) else (rev rxs, x :: xs)
|
wenzelm@233
|
332 |
in take([], xs) end;
|
wenzelm@233
|
333 |
|
wenzelm@233
|
334 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., xi], [x(i+1), ..., xn])
|
wenzelm@233
|
335 |
where xi is the last element that does not satisfy the predicate*)
|
wenzelm@233
|
336 |
fun take_suffix _ [] = ([], [])
|
wenzelm@233
|
337 |
| take_suffix pred (x :: xs) =
|
wenzelm@233
|
338 |
(case take_suffix pred xs of
|
wenzelm@233
|
339 |
([], sffx) => if pred x then ([], x :: sffx) else ([x], sffx)
|
wenzelm@233
|
340 |
| (prfx, sffx) => (x :: prfx, sffx));
|
wenzelm@233
|
341 |
|
wenzelm@233
|
342 |
|
wenzelm@233
|
343 |
|
wenzelm@233
|
344 |
(** integers **)
|
wenzelm@233
|
345 |
|
wenzelm@2958
|
346 |
fun inc i = (i := ! i + 1; ! i);
|
wenzelm@2958
|
347 |
fun dec i = (i := ! i - 1; ! i);
|
wenzelm@233
|
348 |
|
wenzelm@233
|
349 |
|
wenzelm@233
|
350 |
(* lists of integers *)
|
wenzelm@233
|
351 |
|
wenzelm@233
|
352 |
(*make the list [from, from + 1, ..., to]*)
|
paulson@2175
|
353 |
fun (from upto to) =
|
wenzelm@233
|
354 |
if from > to then [] else from :: ((from + 1) upto to);
|
wenzelm@233
|
355 |
|
wenzelm@233
|
356 |
(*make the list [from, from - 1, ..., to]*)
|
paulson@2175
|
357 |
fun (from downto to) =
|
wenzelm@233
|
358 |
if from < to then [] else from :: ((from - 1) downto to);
|
wenzelm@233
|
359 |
|
wenzelm@233
|
360 |
(*predicate: downto0 (is, n) <=> is = [n, n - 1, ..., 0]*)
|
wenzelm@233
|
361 |
fun downto0 (i :: is, n) = i = n andalso downto0 (is, n - 1)
|
wenzelm@233
|
362 |
| downto0 ([], n) = n = ~1;
|
wenzelm@233
|
363 |
|
wenzelm@233
|
364 |
|
wenzelm@233
|
365 |
(* convert integers to strings *)
|
wenzelm@233
|
366 |
|
wenzelm@233
|
367 |
(*expand the number in the given base;
|
wenzelm@233
|
368 |
example: radixpand (2, 8) gives [1, 0, 0, 0]*)
|
wenzelm@233
|
369 |
fun radixpand (base, num) : int list =
|
wenzelm@233
|
370 |
let
|
wenzelm@233
|
371 |
fun radix (n, tail) =
|
wenzelm@233
|
372 |
if n < base then n :: tail
|
wenzelm@233
|
373 |
else radix (n div base, (n mod base) :: tail)
|
wenzelm@233
|
374 |
in radix (num, []) end;
|
wenzelm@233
|
375 |
|
wenzelm@233
|
376 |
(*expands a number into a string of characters starting from "zerochar";
|
wenzelm@233
|
377 |
example: radixstring (2, "0", 8) gives "1000"*)
|
wenzelm@233
|
378 |
fun radixstring (base, zerochar, num) =
|
wenzelm@233
|
379 |
let val offset = ord zerochar;
|
wenzelm@233
|
380 |
fun chrof n = chr (offset + n)
|
wenzelm@233
|
381 |
in implode (map chrof (radixpand (base, num))) end;
|
wenzelm@233
|
382 |
|
wenzelm@233
|
383 |
|
paulson@3407
|
384 |
val string_of_int = Int.toString;
|
wenzelm@233
|
385 |
|
paulson@3407
|
386 |
fun string_of_indexname (a,0) = a
|
paulson@3407
|
387 |
| string_of_indexname (a,i) = a ^ "_" ^ Int.toString i;
|
wenzelm@233
|
388 |
|
wenzelm@233
|
389 |
|
wenzelm@233
|
390 |
(** strings **)
|
wenzelm@233
|
391 |
|
wenzelm@233
|
392 |
fun is_letter ch =
|
wenzelm@233
|
393 |
ord "A" <= ord ch andalso ord ch <= ord "Z" orelse
|
wenzelm@233
|
394 |
ord "a" <= ord ch andalso ord ch <= ord "z";
|
wenzelm@233
|
395 |
|
wenzelm@233
|
396 |
fun is_digit ch =
|
wenzelm@233
|
397 |
ord "0" <= ord ch andalso ord ch <= ord "9";
|
wenzelm@233
|
398 |
|
wenzelm@233
|
399 |
(*letter or _ or prime (')*)
|
wenzelm@233
|
400 |
fun is_quasi_letter "_" = true
|
wenzelm@233
|
401 |
| is_quasi_letter "'" = true
|
wenzelm@233
|
402 |
| is_quasi_letter ch = is_letter ch;
|
wenzelm@233
|
403 |
|
lcp@512
|
404 |
(*white space: blanks, tabs, newlines, formfeeds*)
|
wenzelm@233
|
405 |
val is_blank : string -> bool =
|
wenzelm@3393
|
406 |
fn " " => true | "\t" => true | "\n" => true | "\^L" => true | "\160" => true
|
wenzelm@3063
|
407 |
| _ => false;
|
wenzelm@233
|
408 |
|
wenzelm@233
|
409 |
val is_letdig = is_quasi_letter orf is_digit;
|
wenzelm@233
|
410 |
|
wenzelm@2196
|
411 |
(*printable chars*)
|
wenzelm@2196
|
412 |
fun is_printable c = ord c > ord " " andalso ord c <= ord "~";
|
wenzelm@2196
|
413 |
|
wenzelm@233
|
414 |
|
wenzelm@233
|
415 |
(*lower all chars of string*)
|
wenzelm@233
|
416 |
val to_lower =
|
wenzelm@233
|
417 |
let
|
wenzelm@233
|
418 |
fun lower ch =
|
wenzelm@233
|
419 |
if ch >= "A" andalso ch <= "Z" then
|
wenzelm@233
|
420 |
chr (ord ch - ord "A" + ord "a")
|
wenzelm@233
|
421 |
else ch;
|
wenzelm@233
|
422 |
in implode o (map lower) o explode end;
|
wenzelm@233
|
423 |
|
wenzelm@233
|
424 |
|
lcp@512
|
425 |
(*enclose in brackets*)
|
lcp@512
|
426 |
fun enclose lpar rpar str = lpar ^ str ^ rpar;
|
wenzelm@255
|
427 |
|
wenzelm@233
|
428 |
(*simple quoting (does not escape special chars)*)
|
lcp@512
|
429 |
val quote = enclose "\"" "\"";
|
wenzelm@233
|
430 |
|
wenzelm@233
|
431 |
(*space_implode "..." (explode "hello"); gives "h...e...l...l...o"*)
|
wenzelm@233
|
432 |
fun space_implode a bs = implode (separate a bs);
|
wenzelm@233
|
433 |
|
wenzelm@255
|
434 |
val commas = space_implode ", ";
|
wenzelm@380
|
435 |
val commas_quote = commas o map quote;
|
wenzelm@255
|
436 |
|
wenzelm@233
|
437 |
(*concatenate messages, one per line, into a string*)
|
wenzelm@255
|
438 |
val cat_lines = space_implode "\n";
|
wenzelm@233
|
439 |
|
wenzelm@3832
|
440 |
(*BAD_space_explode "." "h.e..l.lo"; gives ["h", "e", "l", "lo"]*)
|
wenzelm@3832
|
441 |
fun BAD_space_explode sep s =
|
clasohm@1290
|
442 |
let fun divide [] "" = []
|
clasohm@1290
|
443 |
| divide [] part = [part]
|
clasohm@1290
|
444 |
| divide (c::s) part =
|
clasohm@1290
|
445 |
if c = sep then
|
clasohm@1290
|
446 |
(if part = "" then divide s "" else part :: divide s "")
|
clasohm@1290
|
447 |
else divide s (part ^ c)
|
clasohm@1290
|
448 |
in divide (explode s) "" end;
|
wenzelm@233
|
449 |
|
wenzelm@3832
|
450 |
(*space_explode "." "h.e..l.lo"; gives ["h", "e", "", "l", "lo"]*)
|
wenzelm@3832
|
451 |
fun space_explode _ "" = []
|
wenzelm@3832
|
452 |
| space_explode sep str =
|
wenzelm@3832
|
453 |
let
|
wenzelm@3832
|
454 |
fun expl chs =
|
wenzelm@3832
|
455 |
(case take_prefix (not_equal sep) chs of
|
wenzelm@3832
|
456 |
(cs, []) => [implode cs]
|
wenzelm@3832
|
457 |
| (cs, _ :: cs') => implode cs :: expl cs');
|
wenzelm@3832
|
458 |
in expl (explode str) end;
|
wenzelm@3832
|
459 |
|
wenzelm@3832
|
460 |
val split_lines = space_explode "\n";
|
wenzelm@3832
|
461 |
|
wenzelm@3832
|
462 |
|
wenzelm@233
|
463 |
|
wenzelm@233
|
464 |
(** lists as sets **)
|
wenzelm@233
|
465 |
|
wenzelm@233
|
466 |
(*membership in a list*)
|
wenzelm@233
|
467 |
fun x mem [] = false
|
wenzelm@233
|
468 |
| x mem (y :: ys) = x = y orelse x mem ys;
|
clasohm@0
|
469 |
|
paulson@2175
|
470 |
(*membership in a list, optimized version for ints*)
|
berghofe@1576
|
471 |
fun (x:int) mem_int [] = false
|
berghofe@1576
|
472 |
| x mem_int (y :: ys) = x = y orelse x mem_int ys;
|
berghofe@1576
|
473 |
|
paulson@2175
|
474 |
(*membership in a list, optimized version for strings*)
|
berghofe@1576
|
475 |
fun (x:string) mem_string [] = false
|
berghofe@1576
|
476 |
| x mem_string (y :: ys) = x = y orelse x mem_string ys;
|
berghofe@1576
|
477 |
|
clasohm@0
|
478 |
(*generalized membership test*)
|
wenzelm@233
|
479 |
fun gen_mem eq (x, []) = false
|
wenzelm@233
|
480 |
| gen_mem eq (x, y :: ys) = eq (x, y) orelse gen_mem eq (x, ys);
|
wenzelm@233
|
481 |
|
wenzelm@233
|
482 |
|
wenzelm@233
|
483 |
(*insertion into list if not already there*)
|
paulson@2175
|
484 |
fun (x ins xs) = if x mem xs then xs else x :: xs;
|
clasohm@0
|
485 |
|
paulson@2175
|
486 |
(*insertion into list, optimized version for ints*)
|
paulson@2175
|
487 |
fun (x ins_int xs) = if x mem_int xs then xs else x :: xs;
|
berghofe@1576
|
488 |
|
paulson@2175
|
489 |
(*insertion into list, optimized version for strings*)
|
paulson@2175
|
490 |
fun (x ins_string xs) = if x mem_string xs then xs else x :: xs;
|
berghofe@1576
|
491 |
|
clasohm@0
|
492 |
(*generalized insertion*)
|
wenzelm@233
|
493 |
fun gen_ins eq (x, xs) = if gen_mem eq (x, xs) then xs else x :: xs;
|
wenzelm@233
|
494 |
|
wenzelm@233
|
495 |
|
wenzelm@233
|
496 |
(*union of sets represented as lists: no repetitions*)
|
wenzelm@233
|
497 |
fun xs union [] = xs
|
wenzelm@233
|
498 |
| [] union ys = ys
|
wenzelm@233
|
499 |
| (x :: xs) union ys = xs union (x ins ys);
|
clasohm@0
|
500 |
|
paulson@2175
|
501 |
(*union of sets, optimized version for ints*)
|
berghofe@1576
|
502 |
fun (xs:int list) union_int [] = xs
|
berghofe@1576
|
503 |
| [] union_int ys = ys
|
berghofe@1576
|
504 |
| (x :: xs) union_int ys = xs union_int (x ins_int ys);
|
berghofe@1576
|
505 |
|
paulson@2175
|
506 |
(*union of sets, optimized version for strings*)
|
berghofe@1576
|
507 |
fun (xs:string list) union_string [] = xs
|
berghofe@1576
|
508 |
| [] union_string ys = ys
|
berghofe@1576
|
509 |
| (x :: xs) union_string ys = xs union_string (x ins_string ys);
|
berghofe@1576
|
510 |
|
clasohm@0
|
511 |
(*generalized union*)
|
wenzelm@233
|
512 |
fun gen_union eq (xs, []) = xs
|
wenzelm@233
|
513 |
| gen_union eq ([], ys) = ys
|
wenzelm@233
|
514 |
| gen_union eq (x :: xs, ys) = gen_union eq (xs, gen_ins eq (x, ys));
|
wenzelm@233
|
515 |
|
wenzelm@233
|
516 |
|
wenzelm@233
|
517 |
(*intersection*)
|
wenzelm@233
|
518 |
fun [] inter ys = []
|
wenzelm@233
|
519 |
| (x :: xs) inter ys =
|
wenzelm@233
|
520 |
if x mem ys then x :: (xs inter ys) else xs inter ys;
|
wenzelm@233
|
521 |
|
paulson@2175
|
522 |
(*intersection, optimized version for ints*)
|
berghofe@1576
|
523 |
fun ([]:int list) inter_int ys = []
|
berghofe@1576
|
524 |
| (x :: xs) inter_int ys =
|
berghofe@1576
|
525 |
if x mem_int ys then x :: (xs inter_int ys) else xs inter_int ys;
|
berghofe@1576
|
526 |
|
paulson@2175
|
527 |
(*intersection, optimized version for strings *)
|
berghofe@1576
|
528 |
fun ([]:string list) inter_string ys = []
|
berghofe@1576
|
529 |
| (x :: xs) inter_string ys =
|
berghofe@1576
|
530 |
if x mem_string ys then x :: (xs inter_string ys) else xs inter_string ys;
|
berghofe@1576
|
531 |
|
wenzelm@233
|
532 |
|
wenzelm@233
|
533 |
(*subset*)
|
wenzelm@233
|
534 |
fun [] subset ys = true
|
wenzelm@233
|
535 |
| (x :: xs) subset ys = x mem ys andalso xs subset ys;
|
wenzelm@233
|
536 |
|
paulson@2175
|
537 |
(*subset, optimized version for ints*)
|
berghofe@1576
|
538 |
fun ([]:int list) subset_int ys = true
|
berghofe@1576
|
539 |
| (x :: xs) subset_int ys = x mem_int ys andalso xs subset_int ys;
|
berghofe@1576
|
540 |
|
paulson@2175
|
541 |
(*subset, optimized version for strings*)
|
berghofe@1576
|
542 |
fun ([]:string list) subset_string ys = true
|
berghofe@1576
|
543 |
| (x :: xs) subset_string ys = x mem_string ys andalso xs subset_string ys;
|
berghofe@1576
|
544 |
|
paulson@2182
|
545 |
(*set equality for strings*)
|
berghofe@1576
|
546 |
fun eq_set_string ((xs:string list), ys) =
|
berghofe@1576
|
547 |
xs = ys orelse (xs subset_string ys andalso ys subset_string xs);
|
berghofe@1576
|
548 |
|
paulson@2182
|
549 |
fun gen_subset eq (xs, ys) = forall (fn x => gen_mem eq (x, ys)) xs;
|
paulson@2182
|
550 |
|
wenzelm@265
|
551 |
|
wenzelm@233
|
552 |
(*removing an element from a list WITHOUT duplicates*)
|
wenzelm@233
|
553 |
fun (y :: ys) \ x = if x = y then ys else y :: (ys \ x)
|
wenzelm@233
|
554 |
| [] \ x = [];
|
wenzelm@233
|
555 |
|
paulson@2243
|
556 |
fun ys \\ xs = foldl (op \) (ys,xs);
|
clasohm@0
|
557 |
|
wenzelm@233
|
558 |
(*removing an element from a list -- possibly WITH duplicates*)
|
wenzelm@233
|
559 |
fun gen_rem eq (xs, y) = filter_out (fn x => eq (x, y)) xs;
|
wenzelm@233
|
560 |
|
paulson@2243
|
561 |
fun gen_rems eq = foldl (gen_rem eq);
|
wenzelm@233
|
562 |
|
wenzelm@233
|
563 |
|
wenzelm@233
|
564 |
(*makes a list of the distinct members of the input; preserves order, takes
|
wenzelm@233
|
565 |
first of equal elements*)
|
wenzelm@233
|
566 |
fun gen_distinct eq lst =
|
wenzelm@233
|
567 |
let
|
wenzelm@233
|
568 |
val memb = gen_mem eq;
|
clasohm@0
|
569 |
|
wenzelm@233
|
570 |
fun dist (rev_seen, []) = rev rev_seen
|
wenzelm@233
|
571 |
| dist (rev_seen, x :: xs) =
|
wenzelm@233
|
572 |
if memb (x, rev_seen) then dist (rev_seen, xs)
|
wenzelm@233
|
573 |
else dist (x :: rev_seen, xs);
|
wenzelm@233
|
574 |
in
|
wenzelm@233
|
575 |
dist ([], lst)
|
wenzelm@233
|
576 |
end;
|
wenzelm@233
|
577 |
|
paulson@2243
|
578 |
fun distinct l = gen_distinct (op =) l;
|
wenzelm@233
|
579 |
|
wenzelm@233
|
580 |
|
wenzelm@233
|
581 |
(*returns the tail beginning with the first repeated element, or []*)
|
wenzelm@233
|
582 |
fun findrep [] = []
|
wenzelm@233
|
583 |
| findrep (x :: xs) = if x mem xs then x :: xs else findrep xs;
|
wenzelm@233
|
584 |
|
wenzelm@233
|
585 |
|
wenzelm@255
|
586 |
(*returns a list containing all repeated elements exactly once; preserves
|
wenzelm@255
|
587 |
order, takes first of equal elements*)
|
wenzelm@255
|
588 |
fun gen_duplicates eq lst =
|
wenzelm@255
|
589 |
let
|
wenzelm@255
|
590 |
val memb = gen_mem eq;
|
wenzelm@255
|
591 |
|
wenzelm@255
|
592 |
fun dups (rev_dups, []) = rev rev_dups
|
wenzelm@255
|
593 |
| dups (rev_dups, x :: xs) =
|
wenzelm@255
|
594 |
if memb (x, rev_dups) orelse not (memb (x, xs)) then
|
wenzelm@255
|
595 |
dups (rev_dups, xs)
|
wenzelm@255
|
596 |
else dups (x :: rev_dups, xs);
|
wenzelm@255
|
597 |
in
|
wenzelm@255
|
598 |
dups ([], lst)
|
wenzelm@255
|
599 |
end;
|
wenzelm@255
|
600 |
|
paulson@2243
|
601 |
fun duplicates l = gen_duplicates (op =) l;
|
wenzelm@255
|
602 |
|
wenzelm@255
|
603 |
|
wenzelm@233
|
604 |
|
wenzelm@233
|
605 |
(** association lists **)
|
clasohm@0
|
606 |
|
wenzelm@233
|
607 |
(*association list lookup*)
|
wenzelm@233
|
608 |
fun assoc ([], key) = None
|
wenzelm@233
|
609 |
| assoc ((keyi, xi) :: pairs, key) =
|
wenzelm@233
|
610 |
if key = keyi then Some xi else assoc (pairs, key);
|
wenzelm@233
|
611 |
|
paulson@2175
|
612 |
(*association list lookup, optimized version for ints*)
|
berghofe@1576
|
613 |
fun assoc_int ([], (key:int)) = None
|
berghofe@1576
|
614 |
| assoc_int ((keyi, xi) :: pairs, key) =
|
berghofe@1576
|
615 |
if key = keyi then Some xi else assoc_int (pairs, key);
|
berghofe@1576
|
616 |
|
paulson@2175
|
617 |
(*association list lookup, optimized version for strings*)
|
berghofe@1576
|
618 |
fun assoc_string ([], (key:string)) = None
|
berghofe@1576
|
619 |
| assoc_string ((keyi, xi) :: pairs, key) =
|
berghofe@1576
|
620 |
if key = keyi then Some xi else assoc_string (pairs, key);
|
berghofe@1576
|
621 |
|
paulson@2175
|
622 |
(*association list lookup, optimized version for string*ints*)
|
berghofe@1576
|
623 |
fun assoc_string_int ([], (key:string*int)) = None
|
berghofe@1576
|
624 |
| assoc_string_int ((keyi, xi) :: pairs, key) =
|
berghofe@1576
|
625 |
if key = keyi then Some xi else assoc_string_int (pairs, key);
|
berghofe@1576
|
626 |
|
wenzelm@233
|
627 |
fun assocs ps x =
|
wenzelm@233
|
628 |
(case assoc (ps, x) of
|
wenzelm@233
|
629 |
None => []
|
wenzelm@233
|
630 |
| Some ys => ys);
|
wenzelm@233
|
631 |
|
wenzelm@255
|
632 |
(*two-fold association list lookup*)
|
wenzelm@255
|
633 |
fun assoc2 (aal, (key1, key2)) =
|
wenzelm@255
|
634 |
(case assoc (aal, key1) of
|
wenzelm@255
|
635 |
Some al => assoc (al, key2)
|
wenzelm@255
|
636 |
| None => None);
|
wenzelm@255
|
637 |
|
wenzelm@233
|
638 |
(*generalized association list lookup*)
|
wenzelm@233
|
639 |
fun gen_assoc eq ([], key) = None
|
wenzelm@233
|
640 |
| gen_assoc eq ((keyi, xi) :: pairs, key) =
|
wenzelm@233
|
641 |
if eq (key, keyi) then Some xi else gen_assoc eq (pairs, key);
|
wenzelm@233
|
642 |
|
wenzelm@233
|
643 |
(*association list update*)
|
wenzelm@233
|
644 |
fun overwrite (al, p as (key, _)) =
|
wenzelm@233
|
645 |
let fun over ((q as (keyi, _)) :: pairs) =
|
wenzelm@233
|
646 |
if keyi = key then p :: pairs else q :: (over pairs)
|
wenzelm@233
|
647 |
| over [] = [p]
|
wenzelm@233
|
648 |
in over al end;
|
wenzelm@233
|
649 |
|
wenzelm@2522
|
650 |
fun gen_overwrite eq (al, p as (key, _)) =
|
wenzelm@2522
|
651 |
let fun over ((q as (keyi, _)) :: pairs) =
|
wenzelm@2522
|
652 |
if eq (keyi, key) then p :: pairs else q :: (over pairs)
|
wenzelm@2522
|
653 |
| over [] = [p]
|
wenzelm@2522
|
654 |
in over al end;
|
wenzelm@2522
|
655 |
|
wenzelm@233
|
656 |
|
wenzelm@233
|
657 |
|
wenzelm@233
|
658 |
(** generic tables **)
|
clasohm@0
|
659 |
|
wenzelm@233
|
660 |
(*Tables are supposed to be 'efficient' encodings of lists of elements distinct
|
wenzelm@233
|
661 |
wrt. an equality "eq". The extend and merge operations below are optimized
|
wenzelm@233
|
662 |
for long-term space efficiency.*)
|
wenzelm@233
|
663 |
|
wenzelm@233
|
664 |
(*append (new) elements to a table*)
|
wenzelm@233
|
665 |
fun generic_extend _ _ _ tab [] = tab
|
wenzelm@233
|
666 |
| generic_extend eq dest_tab mk_tab tab1 lst2 =
|
wenzelm@233
|
667 |
let
|
wenzelm@233
|
668 |
val lst1 = dest_tab tab1;
|
wenzelm@233
|
669 |
val new_lst2 = gen_rems eq (lst2, lst1);
|
wenzelm@233
|
670 |
in
|
wenzelm@233
|
671 |
if null new_lst2 then tab1
|
wenzelm@233
|
672 |
else mk_tab (lst1 @ new_lst2)
|
wenzelm@233
|
673 |
end;
|
clasohm@0
|
674 |
|
wenzelm@233
|
675 |
(*append (new) elements of 2nd table to 1st table*)
|
wenzelm@233
|
676 |
fun generic_merge eq dest_tab mk_tab tab1 tab2 =
|
wenzelm@233
|
677 |
let
|
wenzelm@233
|
678 |
val lst1 = dest_tab tab1;
|
wenzelm@233
|
679 |
val lst2 = dest_tab tab2;
|
wenzelm@233
|
680 |
val new_lst2 = gen_rems eq (lst2, lst1);
|
wenzelm@233
|
681 |
in
|
wenzelm@233
|
682 |
if null new_lst2 then tab1
|
wenzelm@233
|
683 |
else if gen_subset eq (lst1, lst2) then tab2
|
wenzelm@233
|
684 |
else mk_tab (lst1 @ new_lst2)
|
wenzelm@233
|
685 |
end;
|
clasohm@0
|
686 |
|
wenzelm@233
|
687 |
|
wenzelm@233
|
688 |
(*lists as tables*)
|
paulson@2243
|
689 |
fun extend_list tab = generic_extend (op =) I I tab;
|
paulson@2243
|
690 |
fun merge_lists tab = generic_merge (op =) I I tab;
|
wenzelm@233
|
691 |
|
wenzelm@380
|
692 |
fun merge_rev_lists xs [] = xs
|
wenzelm@380
|
693 |
| merge_rev_lists [] ys = ys
|
wenzelm@380
|
694 |
| merge_rev_lists xs (y :: ys) =
|
wenzelm@380
|
695 |
(if y mem xs then I else cons y) (merge_rev_lists xs ys);
|
wenzelm@380
|
696 |
|
clasohm@0
|
697 |
|
clasohm@0
|
698 |
|
wenzelm@233
|
699 |
(** balanced trees **)
|
wenzelm@233
|
700 |
|
wenzelm@233
|
701 |
exception Balance; (*indicates non-positive argument to balancing fun*)
|
wenzelm@233
|
702 |
|
wenzelm@233
|
703 |
(*balanced folding; avoids deep nesting*)
|
wenzelm@233
|
704 |
fun fold_bal f [x] = x
|
wenzelm@233
|
705 |
| fold_bal f [] = raise Balance
|
wenzelm@233
|
706 |
| fold_bal f xs =
|
wenzelm@233
|
707 |
let val k = length xs div 2
|
wenzelm@233
|
708 |
in f (fold_bal f (take(k, xs)),
|
wenzelm@233
|
709 |
fold_bal f (drop(k, xs)))
|
wenzelm@233
|
710 |
end;
|
wenzelm@233
|
711 |
|
wenzelm@233
|
712 |
(*construct something of the form f(...g(...(x)...)) for balanced access*)
|
wenzelm@233
|
713 |
fun access_bal (f, g, x) n i =
|
wenzelm@233
|
714 |
let fun acc n i = (*1<=i<=n*)
|
wenzelm@233
|
715 |
if n=1 then x else
|
wenzelm@233
|
716 |
let val n2 = n div 2
|
wenzelm@233
|
717 |
in if i<=n2 then f (acc n2 i)
|
wenzelm@233
|
718 |
else g (acc (n-n2) (i-n2))
|
wenzelm@233
|
719 |
end
|
wenzelm@233
|
720 |
in if 1<=i andalso i<=n then acc n i else raise Balance end;
|
wenzelm@233
|
721 |
|
wenzelm@233
|
722 |
(*construct ALL such accesses; could try harder to share recursive calls!*)
|
wenzelm@233
|
723 |
fun accesses_bal (f, g, x) n =
|
wenzelm@233
|
724 |
let fun acc n =
|
wenzelm@233
|
725 |
if n=1 then [x] else
|
wenzelm@233
|
726 |
let val n2 = n div 2
|
wenzelm@233
|
727 |
val acc2 = acc n2
|
wenzelm@233
|
728 |
in if n-n2=n2 then map f acc2 @ map g acc2
|
wenzelm@233
|
729 |
else map f acc2 @ map g (acc (n-n2)) end
|
wenzelm@233
|
730 |
in if 1<=n then acc n else raise Balance end;
|
wenzelm@233
|
731 |
|
wenzelm@233
|
732 |
|
wenzelm@233
|
733 |
|
wenzelm@2506
|
734 |
(** orders **)
|
wenzelm@2506
|
735 |
|
wenzelm@2506
|
736 |
datatype order = LESS | EQUAL | GREATER;
|
wenzelm@2506
|
737 |
|
wenzelm@2506
|
738 |
fun intord (i, j: int) =
|
wenzelm@2506
|
739 |
if i < j then LESS
|
wenzelm@2506
|
740 |
else if i = j then EQUAL
|
wenzelm@2506
|
741 |
else GREATER;
|
wenzelm@2506
|
742 |
|
wenzelm@2506
|
743 |
fun stringord (a, b: string) =
|
wenzelm@2506
|
744 |
if a < b then LESS
|
wenzelm@2506
|
745 |
else if a = b then EQUAL
|
wenzelm@2506
|
746 |
else GREATER;
|
wenzelm@2506
|
747 |
|
wenzelm@2506
|
748 |
|
wenzelm@2506
|
749 |
|
wenzelm@3525
|
750 |
(** input / output and diagnostics **)
|
wenzelm@233
|
751 |
|
paulson@2243
|
752 |
val cd = OS.FileSys.chDir;
|
wenzelm@2317
|
753 |
val pwd = OS.FileSys.getDir;
|
paulson@2243
|
754 |
|
wenzelm@3525
|
755 |
|
wenzelm@3525
|
756 |
local
|
wenzelm@3525
|
757 |
fun out s =
|
wenzelm@3525
|
758 |
(TextIO.output (TextIO.stdOut, s); TextIO.flushOut TextIO.stdOut);
|
wenzelm@3525
|
759 |
|
wenzelm@3525
|
760 |
fun prefix_lines prfx txt =
|
wenzelm@3832
|
761 |
txt |> split_lines |> map (fn s => prfx ^ s ^ "\n") |> implode;
|
wenzelm@3525
|
762 |
in
|
wenzelm@3525
|
763 |
|
wenzelm@3525
|
764 |
(*hooks for output channels: normal, warning, error*)
|
wenzelm@3525
|
765 |
val prs_fn = ref (fn s => out s);
|
wenzelm@3525
|
766 |
val warning_fn = ref (fn s => out (prefix_lines "### " s));
|
wenzelm@3525
|
767 |
val error_fn = ref (fn s => out (prefix_lines "*** " s));
|
wenzelm@3525
|
768 |
|
wenzelm@3525
|
769 |
end;
|
berghofe@1580
|
770 |
|
berghofe@1580
|
771 |
fun prs s = !prs_fn s;
|
wenzelm@233
|
772 |
fun writeln s = prs (s ^ "\n");
|
wenzelm@233
|
773 |
|
wenzelm@3525
|
774 |
fun warning s = !warning_fn s;
|
wenzelm@233
|
775 |
|
wenzelm@233
|
776 |
(*print error message and abort to top level*)
|
wenzelm@233
|
777 |
exception ERROR;
|
wenzelm@3874
|
778 |
fun error_msg s = !error_fn s; (*promise to raise ERROR later!*)
|
wenzelm@3553
|
779 |
fun error s = (error_msg s; raise ERROR);
|
wenzelm@3553
|
780 |
fun sys_error msg = (error_msg " !! SYSTEM ERROR !!\n"; error msg);
|
wenzelm@233
|
781 |
|
wenzelm@233
|
782 |
fun assert p msg = if p then () else error msg;
|
wenzelm@233
|
783 |
fun deny p msg = if p then error msg else ();
|
wenzelm@233
|
784 |
|
lcp@544
|
785 |
(*Assert pred for every member of l, generating a message if pred fails*)
|
lcp@544
|
786 |
fun assert_all pred l msg_fn =
|
lcp@544
|
787 |
let fun asl [] = ()
|
paulson@2243
|
788 |
| asl (x::xs) = if pred x then asl xs
|
paulson@2243
|
789 |
else error (msg_fn x)
|
lcp@544
|
790 |
in asl l end;
|
wenzelm@233
|
791 |
|
wenzelm@3624
|
792 |
|
wenzelm@3699
|
793 |
(* handle errors (capturing messages) *)
|
wenzelm@3699
|
794 |
|
wenzelm@3699
|
795 |
datatype 'a error =
|
wenzelm@3699
|
796 |
Error of string |
|
wenzelm@3699
|
797 |
OK of 'a;
|
wenzelm@3699
|
798 |
|
wenzelm@3699
|
799 |
fun handle_error f x =
|
wenzelm@3699
|
800 |
let
|
wenzelm@3699
|
801 |
val buffer = ref "";
|
wenzelm@3699
|
802 |
fun capture s = buffer := ! buffer ^ s ^ "\n";
|
wenzelm@3699
|
803 |
val result = Some (setmp error_fn capture f x) handle ERROR => None;
|
wenzelm@3699
|
804 |
in
|
wenzelm@3699
|
805 |
case result of
|
wenzelm@3699
|
806 |
None => Error (! buffer)
|
wenzelm@3699
|
807 |
| Some y => OK y
|
wenzelm@3699
|
808 |
end;
|
wenzelm@3699
|
809 |
|
wenzelm@3699
|
810 |
|
wenzelm@3624
|
811 |
(* read / write files *)
|
wenzelm@3624
|
812 |
|
wenzelm@3624
|
813 |
fun read_file name =
|
wenzelm@3624
|
814 |
let
|
wenzelm@3624
|
815 |
val instream = TextIO.openIn name;
|
wenzelm@3624
|
816 |
val intext = TextIO.inputAll instream;
|
wenzelm@3624
|
817 |
in
|
wenzelm@3624
|
818 |
TextIO.closeIn instream;
|
wenzelm@3624
|
819 |
intext
|
wenzelm@3624
|
820 |
end;
|
wenzelm@3624
|
821 |
|
wenzelm@3624
|
822 |
fun write_file name txt =
|
wenzelm@3645
|
823 |
let val outstream = TextIO.openOut name in
|
wenzelm@3645
|
824 |
TextIO.output (outstream, txt);
|
wenzelm@3645
|
825 |
TextIO.closeOut outstream
|
wenzelm@3645
|
826 |
end;
|
wenzelm@3645
|
827 |
|
wenzelm@3645
|
828 |
fun append_file name txt =
|
wenzelm@3645
|
829 |
let val outstream = TextIO.openAppend name in
|
wenzelm@3624
|
830 |
TextIO.output (outstream, txt);
|
wenzelm@3624
|
831 |
TextIO.closeOut outstream
|
wenzelm@3624
|
832 |
end;
|
wenzelm@3624
|
833 |
|
wenzelm@3624
|
834 |
|
wenzelm@3624
|
835 |
(*for the "test" target in IsaMakefiles -- signifies successful termination*)
|
wenzelm@233
|
836 |
fun maketest msg =
|
wenzelm@3624
|
837 |
(writeln msg; write_file "test" "Test examples ran successfully\n");
|
wenzelm@233
|
838 |
|
wenzelm@233
|
839 |
|
wenzelm@233
|
840 |
(*print a list surrounded by the brackets lpar and rpar, with comma separator
|
wenzelm@233
|
841 |
print nothing for empty list*)
|
wenzelm@233
|
842 |
fun print_list (lpar, rpar, pre: 'a -> unit) (l : 'a list) =
|
wenzelm@233
|
843 |
let fun prec x = (prs ","; pre x)
|
wenzelm@233
|
844 |
in
|
wenzelm@233
|
845 |
(case l of
|
wenzelm@233
|
846 |
[] => ()
|
wenzelm@233
|
847 |
| x::l => (prs lpar; pre x; seq prec l; prs rpar))
|
wenzelm@233
|
848 |
end;
|
wenzelm@233
|
849 |
|
wenzelm@233
|
850 |
(*print a list of items separated by newlines*)
|
wenzelm@233
|
851 |
fun print_list_ln (pre: 'a -> unit) : 'a list -> unit =
|
wenzelm@233
|
852 |
seq (fn x => (pre x; writeln ""));
|
wenzelm@233
|
853 |
|
wenzelm@233
|
854 |
|
wenzelm@233
|
855 |
val print_int = prs o string_of_int;
|
wenzelm@233
|
856 |
|
wenzelm@233
|
857 |
|
wenzelm@3525
|
858 |
(* output to LaTeX / xdvi *)
|
wenzelm@3525
|
859 |
fun latex s =
|
wenzelm@3525
|
860 |
execute ("( cd /tmp ; echo \"" ^ s ^
|
wenzelm@3525
|
861 |
"\" | isa2latex -s > $$.tex ; latex $$.tex ; xdvi $$.dvi ; rm $$.* ) > /dev/null &");
|
wenzelm@3525
|
862 |
|
wenzelm@233
|
863 |
|
wenzelm@233
|
864 |
(** timing **)
|
wenzelm@233
|
865 |
|
wenzelm@233
|
866 |
(*unconditional timing function*)
|
paulson@2243
|
867 |
fun timeit x = cond_timeit true x;
|
wenzelm@233
|
868 |
|
wenzelm@233
|
869 |
(*timed application function*)
|
wenzelm@233
|
870 |
fun timeap f x = timeit (fn () => f x);
|
wenzelm@233
|
871 |
|
wenzelm@233
|
872 |
(*timed "use" function, printing filenames*)
|
wenzelm@233
|
873 |
fun time_use fname = timeit (fn () =>
|
wenzelm@233
|
874 |
(writeln ("\n**** Starting " ^ fname ^ " ****"); use fname;
|
wenzelm@233
|
875 |
writeln ("\n**** Finished " ^ fname ^ " ****")));
|
wenzelm@233
|
876 |
|
wenzelm@3624
|
877 |
(*use the file, but exit with error code if errors found.*)
|
lcp@955
|
878 |
fun exit_use fname = use fname handle _ => exit 1;
|
wenzelm@233
|
879 |
|
wenzelm@233
|
880 |
|
clasohm@1407
|
881 |
(** filenames and paths **)
|
wenzelm@233
|
882 |
|
clasohm@1290
|
883 |
(*Convert UNIX filename of the form "path/file" to "path/" and "file";
|
wenzelm@233
|
884 |
if filename contains no slash, then it returns "" and "file"*)
|
wenzelm@233
|
885 |
val split_filename =
|
wenzelm@233
|
886 |
(pairself implode) o take_suffix (not_equal "/") o explode;
|
wenzelm@233
|
887 |
|
wenzelm@233
|
888 |
val base_name = #2 o split_filename;
|
wenzelm@233
|
889 |
|
clasohm@1290
|
890 |
(*Merge splitted filename (path and file);
|
wenzelm@233
|
891 |
if path does not end with one a slash is appended*)
|
wenzelm@233
|
892 |
fun tack_on "" name = name
|
wenzelm@233
|
893 |
| tack_on path name =
|
wenzelm@233
|
894 |
if last_elem (explode path) = "/" then path ^ name
|
wenzelm@233
|
895 |
else path ^ "/" ^ name;
|
wenzelm@233
|
896 |
|
clasohm@1290
|
897 |
(*Remove the extension of a filename, i.e. the part after the last '.'*)
|
wenzelm@233
|
898 |
val remove_ext = implode o #1 o take_suffix (not_equal ".") o explode;
|
wenzelm@233
|
899 |
|
clasohm@1290
|
900 |
(*Make relative path to reach an absolute location from a different one*)
|
clasohm@1290
|
901 |
fun relative_path cur_path dest_path =
|
clasohm@1290
|
902 |
let (*Remove common beginning of both paths and make relative path*)
|
clasohm@1290
|
903 |
fun mk_relative [] [] = []
|
clasohm@1290
|
904 |
| mk_relative [] ds = ds
|
clasohm@1290
|
905 |
| mk_relative cs [] = map (fn _ => "..") cs
|
clasohm@1290
|
906 |
| mk_relative (c::cs) (d::ds) =
|
clasohm@1290
|
907 |
if c = d then mk_relative cs ds
|
clasohm@1290
|
908 |
else ".." :: map (fn _ => "..") cs @ (d::ds);
|
clasohm@1290
|
909 |
in if cur_path = "" orelse hd (explode cur_path) <> "/" orelse
|
clasohm@1290
|
910 |
dest_path = "" orelse hd (explode dest_path) <> "/" then
|
clasohm@1290
|
911 |
error "Relative or empty path passed to relative_path"
|
clasohm@1290
|
912 |
else ();
|
wenzelm@3832
|
913 |
space_implode "/" (mk_relative (BAD_space_explode "/" cur_path)
|
wenzelm@3832
|
914 |
(BAD_space_explode "/" dest_path))
|
clasohm@1290
|
915 |
end;
|
wenzelm@233
|
916 |
|
clasohm@1407
|
917 |
(*Determine if absolute path1 is a subdirectory of absolute path2*)
|
clasohm@1407
|
918 |
fun path1 subdir_of path2 =
|
clasohm@1407
|
919 |
if hd (explode path1) <> "/" orelse hd (explode path2) <> "/" then
|
clasohm@1407
|
920 |
error "Relative or empty path passed to subdir_of"
|
wenzelm@3832
|
921 |
else (BAD_space_explode "/" path2) prefix (BAD_space_explode "/" path1);
|
clasohm@1407
|
922 |
|
clasohm@1456
|
923 |
fun absolute_path cwd file =
|
clasohm@1456
|
924 |
let fun rm_points [] result = rev result
|
clasohm@1456
|
925 |
| rm_points (".."::ds) result = rm_points ds (tl result)
|
clasohm@1456
|
926 |
| rm_points ("."::ds) result = rm_points ds result
|
clasohm@1456
|
927 |
| rm_points (d::ds) result = rm_points ds (d::result);
|
clasohm@1456
|
928 |
in if file = "" then ""
|
clasohm@1456
|
929 |
else if hd (explode file) = "/" then file
|
clasohm@1456
|
930 |
else "/" ^ space_implode "/"
|
wenzelm@3832
|
931 |
(rm_points (BAD_space_explode "/" (tack_on cwd file)) [])
|
clasohm@1456
|
932 |
end;
|
clasohm@1456
|
933 |
|
berghofe@3606
|
934 |
fun file_exists file = (file_info file <> "");
|
berghofe@3606
|
935 |
|
wenzelm@233
|
936 |
|
wenzelm@233
|
937 |
(** misc functions **)
|
wenzelm@233
|
938 |
|
wenzelm@233
|
939 |
(*use the keyfun to make a list of (x, key) pairs*)
|
clasohm@0
|
940 |
fun make_keylist (keyfun: 'a->'b) : 'a list -> ('a * 'b) list =
|
wenzelm@233
|
941 |
let fun keypair x = (x, keyfun x)
|
wenzelm@233
|
942 |
in map keypair end;
|
clasohm@0
|
943 |
|
wenzelm@233
|
944 |
(*given a list of (x, key) pairs and a searchkey
|
clasohm@0
|
945 |
return the list of xs from each pair whose key equals searchkey*)
|
clasohm@0
|
946 |
fun keyfilter [] searchkey = []
|
wenzelm@233
|
947 |
| keyfilter ((x, key) :: pairs) searchkey =
|
wenzelm@233
|
948 |
if key = searchkey then x :: keyfilter pairs searchkey
|
wenzelm@233
|
949 |
else keyfilter pairs searchkey;
|
clasohm@0
|
950 |
|
clasohm@0
|
951 |
|
clasohm@0
|
952 |
(*Partition list into elements that satisfy predicate and those that don't.
|
wenzelm@233
|
953 |
Preserves order of elements in both lists.*)
|
clasohm@0
|
954 |
fun partition (pred: 'a->bool) (ys: 'a list) : ('a list * 'a list) =
|
clasohm@0
|
955 |
let fun part ([], answer) = answer
|
wenzelm@233
|
956 |
| part (x::xs, (ys, ns)) = if pred(x)
|
wenzelm@233
|
957 |
then part (xs, (x::ys, ns))
|
wenzelm@233
|
958 |
else part (xs, (ys, x::ns))
|
wenzelm@233
|
959 |
in part (rev ys, ([], [])) end;
|
clasohm@0
|
960 |
|
clasohm@0
|
961 |
|
clasohm@0
|
962 |
fun partition_eq (eq:'a * 'a -> bool) =
|
clasohm@0
|
963 |
let fun part [] = []
|
wenzelm@233
|
964 |
| part (x::ys) = let val (xs, xs') = partition (apl(x, eq)) ys
|
wenzelm@233
|
965 |
in (x::xs)::(part xs') end
|
clasohm@0
|
966 |
in part end;
|
clasohm@0
|
967 |
|
clasohm@0
|
968 |
|
wenzelm@233
|
969 |
(*Partition a list into buckets [ bi, b(i+1), ..., bj ]
|
clasohm@0
|
970 |
putting x in bk if p(k)(x) holds. Preserve order of elements if possible.*)
|
clasohm@0
|
971 |
fun partition_list p i j =
|
wenzelm@233
|
972 |
let fun part k xs =
|
wenzelm@233
|
973 |
if k>j then
|
clasohm@0
|
974 |
(case xs of [] => []
|
clasohm@0
|
975 |
| _ => raise LIST "partition_list")
|
clasohm@0
|
976 |
else
|
wenzelm@233
|
977 |
let val (ns, rest) = partition (p k) xs;
|
wenzelm@233
|
978 |
in ns :: part(k+1)rest end
|
clasohm@0
|
979 |
in part i end;
|
clasohm@0
|
980 |
|
clasohm@0
|
981 |
|
wenzelm@233
|
982 |
(* sorting *)
|
wenzelm@233
|
983 |
|
wenzelm@233
|
984 |
(*insertion sort; stable (does not reorder equal elements)
|
wenzelm@233
|
985 |
'less' is less-than test on type 'a*)
|
wenzelm@233
|
986 |
fun sort (less: 'a*'a -> bool) =
|
clasohm@0
|
987 |
let fun insert (x, []) = [x]
|
wenzelm@233
|
988 |
| insert (x, y::ys) =
|
wenzelm@233
|
989 |
if less(y, x) then y :: insert (x, ys) else x::y::ys;
|
clasohm@0
|
990 |
fun sort1 [] = []
|
clasohm@0
|
991 |
| sort1 (x::xs) = insert (x, sort1 xs)
|
clasohm@0
|
992 |
in sort1 end;
|
clasohm@0
|
993 |
|
wenzelm@41
|
994 |
(*sort strings*)
|
wenzelm@3973
|
995 |
fun sort_wrt sel xs = sort (op <= o pairself (sel: 'a -> string)) xs;
|
wenzelm@3973
|
996 |
val sort_strings = sort_wrt I;
|
wenzelm@41
|
997 |
|
wenzelm@41
|
998 |
|
wenzelm@233
|
999 |
(* transitive closure (not Warshall's algorithm) *)
|
clasohm@0
|
1000 |
|
wenzelm@233
|
1001 |
fun transitive_closure [] = []
|
wenzelm@233
|
1002 |
| transitive_closure ((x, ys)::ps) =
|
wenzelm@233
|
1003 |
let val qs = transitive_closure ps
|
paulson@2182
|
1004 |
val zs = foldl (fn (zs, y) => assocs qs y union_string zs) (ys, ys)
|
paulson@2182
|
1005 |
fun step(u, us) = (u, if x mem_string us then zs union_string us
|
paulson@2243
|
1006 |
else us)
|
wenzelm@233
|
1007 |
in (x, zs) :: map step qs end;
|
clasohm@0
|
1008 |
|
clasohm@0
|
1009 |
|
wenzelm@233
|
1010 |
(* generating identifiers *)
|
clasohm@0
|
1011 |
|
clasohm@0
|
1012 |
local
|
wenzelm@233
|
1013 |
val a = ord "a" and z = ord "z" and A = ord "A" and Z = ord "Z"
|
wenzelm@233
|
1014 |
and k0 = ord "0" and k9 = ord "9"
|
paulson@2003
|
1015 |
|
paulson@2806
|
1016 |
val seedr = ref 0;
|
clasohm@0
|
1017 |
in
|
clasohm@0
|
1018 |
|
paulson@2003
|
1019 |
(*Maps 0-63 to A-Z, a-z, 0-9 or _ or ' for generating random identifiers*)
|
paulson@2003
|
1020 |
fun newid n =
|
paulson@2003
|
1021 |
let fun char i =
|
paulson@2003
|
1022 |
if i<26 then chr (A+i)
|
paulson@2003
|
1023 |
else if i<52 then chr (a+i-26)
|
paulson@2003
|
1024 |
else if i<62 then chr (k0+i-52)
|
paulson@2003
|
1025 |
else if i=62 then "_"
|
paulson@2003
|
1026 |
else (*i=63*) "'"
|
paulson@2003
|
1027 |
in implode (map char (radixpand (64,n))) end;
|
paulson@2003
|
1028 |
|
paulson@2806
|
1029 |
(*Freshly generated identifiers with given prefix; MUST start with a letter*)
|
paulson@2003
|
1030 |
fun gensym pre = pre ^
|
paulson@2806
|
1031 |
(#1(newid (!seedr),
|
paulson@2806
|
1032 |
seedr := 1+ !seedr))
|
paulson@2003
|
1033 |
|
clasohm@0
|
1034 |
(*Increment a list of letters like a reversed base 26 number.
|
wenzelm@233
|
1035 |
If head is "z", bumps chars in tail.
|
clasohm@0
|
1036 |
Digits are incremented as if they were integers.
|
clasohm@0
|
1037 |
"_" and "'" are not changed.
|
wenzelm@233
|
1038 |
For making variants of identifiers.*)
|
clasohm@0
|
1039 |
|
clasohm@0
|
1040 |
fun bump_int_list(c::cs) = if c="9" then "0" :: bump_int_list cs else
|
wenzelm@233
|
1041 |
if k0 <= ord(c) andalso ord(c) < k9 then chr(ord(c)+1) :: cs
|
wenzelm@233
|
1042 |
else "1" :: c :: cs
|
clasohm@0
|
1043 |
| bump_int_list([]) = error("bump_int_list: not an identifier");
|
clasohm@0
|
1044 |
|
wenzelm@233
|
1045 |
fun bump_list([], d) = [d]
|
wenzelm@233
|
1046 |
| bump_list(["'"], d) = [d, "'"]
|
wenzelm@233
|
1047 |
| bump_list("z"::cs, _) = "a" :: bump_list(cs, "a")
|
wenzelm@233
|
1048 |
| bump_list("Z"::cs, _) = "A" :: bump_list(cs, "A")
|
wenzelm@233
|
1049 |
| bump_list("9"::cs, _) = "0" :: bump_int_list cs
|
wenzelm@233
|
1050 |
| bump_list(c::cs, _) = let val k = ord(c)
|
wenzelm@233
|
1051 |
in if (a <= k andalso k < z) orelse (A <= k andalso k < Z) orelse
|
wenzelm@233
|
1052 |
(k0 <= k andalso k < k9) then chr(k+1) :: cs else
|
wenzelm@233
|
1053 |
if c="'" orelse c="_" then c :: bump_list(cs, "") else
|
wenzelm@233
|
1054 |
error("bump_list: not legal in identifier: " ^
|
wenzelm@233
|
1055 |
implode(rev(c::cs)))
|
wenzelm@233
|
1056 |
end;
|
clasohm@0
|
1057 |
|
clasohm@0
|
1058 |
end;
|
clasohm@0
|
1059 |
|
wenzelm@233
|
1060 |
fun bump_string s : string = implode (rev (bump_list(rev(explode s), "")));
|
wenzelm@41
|
1061 |
|
wenzelm@41
|
1062 |
|
wenzelm@233
|
1063 |
(* lexical scanning *)
|
clasohm@0
|
1064 |
|
wenzelm@233
|
1065 |
(*scan a list of characters into "words" composed of "letters" (recognized by
|
wenzelm@233
|
1066 |
is_let) and separated by any number of non-"letters"*)
|
wenzelm@233
|
1067 |
fun scanwords is_let cs =
|
clasohm@0
|
1068 |
let fun scan1 [] = []
|
wenzelm@233
|
1069 |
| scan1 cs =
|
wenzelm@233
|
1070 |
let val (lets, rest) = take_prefix is_let cs
|
wenzelm@233
|
1071 |
in implode lets :: scanwords is_let rest end;
|
wenzelm@233
|
1072 |
in scan1 (#2 (take_prefix (not o is_let) cs)) end;
|
clasohm@24
|
1073 |
|
clasohm@1364
|
1074 |
end;
|
clasohm@1364
|
1075 |
|
paulson@1592
|
1076 |
(*Variable-branching trees: for proof terms*)
|
paulson@1592
|
1077 |
datatype 'a mtree = Join of 'a * 'a mtree list;
|
paulson@1592
|
1078 |
|
clasohm@1364
|
1079 |
open Library;
|