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