author | wenzelm |
Sun, 03 Jun 2007 23:16:48 +0200 | |
changeset 23220 | 9e04da929160 |
parent 23202 | 98736a2fec98 |
child 23251 | 471b576aad25 |
permissions | -rw-r--r-- |
41
97aae241094b
added cons, rcons, last_elem, sort_strings, take_suffix;
wenzelm
parents:
24
diff
changeset
|
1 |
(* Title: Pure/library.ML |
0 | 2 |
ID: $Id$ |
233 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
16188 | 4 |
Author: Markus Wenzel, TU Muenchen |
0 | 5 |
|
233 | 6 |
Basic library: functions, options, pairs, booleans, lists, integers, |
19596 | 7 |
strings, lists as sets, balanced trees, orders, current directory, misc. |
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
8 |
|
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
9 |
See also General/basics.ML for the most fundamental concepts. |
0 | 10 |
*) |
11 |
||
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
12 |
infix 1 |>>> |
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
13 |
infix 2 ? |
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
14 |
infix 3 o oo ooo oooo |
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
15 |
infix 4 ~~ upto downto |
20854 | 16 |
infix orf andf \ \\ mem mem_int mem_string union union_int |
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
17 |
union_string inter inter_int inter_string subset subset_int subset_string |
5893 | 18 |
|
15745 | 19 |
signature BASIC_LIBRARY = |
4621 | 20 |
sig |
21 |
(*functions*) |
|
16842 | 22 |
val I: 'a -> 'a |
23 |
val K: 'a -> 'b -> 'a |
|
23220 | 24 |
val flip: ('a -> 'b -> 'c) -> 'b -> 'a -> 'c |
4621 | 25 |
val curry: ('a * 'b -> 'c) -> 'a -> 'b -> 'c |
26 |
val uncurry: ('a -> 'b -> 'c) -> 'a * 'b -> 'c |
|
21335
6b9d4a19a3a8
added higher-order combinators for structured results
haftmann
parents:
21182
diff
changeset
|
27 |
val |>>> : ('a * 'c) * ('a -> 'b * 'd) -> 'b * ('c * 'd) |
21565 | 28 |
val ? : bool * ('a -> 'a) -> 'a -> 'a |
16721 | 29 |
val oo: ('a -> 'b) * ('c -> 'd -> 'a) -> 'c -> 'd -> 'b |
30 |
val ooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'a) -> 'c -> 'd -> 'e -> 'b |
|
31 |
val oooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'f -> 'a) -> 'c -> 'd -> 'e -> 'f -> 'b |
|
16842 | 32 |
val funpow: int -> ('a -> 'a) -> 'a -> 'a |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
33 |
|
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
34 |
(*exceptions*) |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
35 |
exception EXCEPTION of exn * string |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
36 |
val do_transform_failure: bool ref |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
37 |
val transform_failure: (exn -> exn) -> ('a -> 'b) -> 'a -> 'b |
14868 | 38 |
datatype 'a result = Result of 'a | Exn of exn |
39 |
val capture: ('a -> 'b) -> 'a -> 'b result |
|
40 |
val release: 'a result -> 'a |
|
41 |
val get_result: 'a result -> 'a option |
|
42 |
val get_exn: 'a result -> exn option |
|
4621 | 43 |
|
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
44 |
(*errors*) |
19542 | 45 |
exception SYS_ERROR of string |
46 |
val sys_error: string -> 'a |
|
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
47 |
exception ERROR of string |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
48 |
val error: string -> 'a |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
49 |
val cat_error: string -> string -> 'a |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
50 |
val assert_all: ('a -> bool) -> 'a list -> ('a -> string) -> unit |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
51 |
|
4621 | 52 |
(*pairs*) |
53 |
val pair: 'a -> 'b -> 'a * 'b |
|
54 |
val rpair: 'a -> 'b -> 'b * 'a |
|
55 |
val fst: 'a * 'b -> 'a |
|
56 |
val snd: 'a * 'b -> 'b |
|
17498
d83af87bbdc5
improved eq_fst and eq_snd, removed some deprecated stuff
haftmann
parents:
17486
diff
changeset
|
57 |
val eq_fst: ('a * 'c -> bool) -> ('a * 'b) * ('c * 'd) -> bool |
d83af87bbdc5
improved eq_fst and eq_snd, removed some deprecated stuff
haftmann
parents:
17486
diff
changeset
|
58 |
val eq_snd: ('b * 'd -> bool) -> ('a * 'b) * ('c * 'd) -> bool |
19454
46a7e133f802
moved coalesce to AList, added equality predicates to library
haftmann
parents:
19424
diff
changeset
|
59 |
val eq_pair: ('a * 'c -> bool) -> ('b * 'd -> bool) -> ('a * 'b) * ('c * 'd) -> bool |
4621 | 60 |
val swap: 'a * 'b -> 'b * 'a |
61 |
val apfst: ('a -> 'b) -> 'a * 'c -> 'b * 'c |
|
62 |
val apsnd: ('a -> 'b) -> 'c * 'a -> 'c * 'b |
|
63 |
val pairself: ('a -> 'b) -> 'a * 'a -> 'b * 'b |
|
64 |
||
65 |
(*booleans*) |
|
66 |
val equal: ''a -> ''a -> bool |
|
67 |
val not_equal: ''a -> ''a -> bool |
|
68 |
val orf: ('a -> bool) * ('a -> bool) -> 'a -> bool |
|
69 |
val andf: ('a -> bool) * ('a -> bool) -> 'a -> bool |
|
70 |
val exists: ('a -> bool) -> 'a list -> bool |
|
71 |
val forall: ('a -> bool) -> 'a list -> bool |
|
72 |
val set: bool ref -> bool |
|
73 |
val reset: bool ref -> bool |
|
74 |
val toggle: bool ref -> bool |
|
9118 | 75 |
val change: 'a ref -> ('a -> 'a) -> unit |
4621 | 76 |
val setmp: 'a ref -> 'a -> ('b -> 'c) -> 'b -> 'c |
77 |
||
78 |
(*lists*) |
|
15570 | 79 |
exception UnequalLengths |
5285 | 80 |
val single: 'a -> 'a list |
20882 | 81 |
val the_single: 'a list -> 'a |
19273 | 82 |
val singleton: ('a list -> 'b list) -> 'a -> 'b |
5904 | 83 |
val apply: ('a -> 'a) list -> 'a -> 'a |
15760 | 84 |
val foldr1: ('a * 'a -> 'a) -> 'a list -> 'a |
18278 | 85 |
val foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list |
19461 | 86 |
val flat: 'a list list -> 'a list |
19424 | 87 |
val unflat: 'a list list -> 'b list -> 'b list list |
18441 | 88 |
val burrow: ('a list -> 'b list) -> 'a list list -> 'b list list |
18549
5308a6ea3b96
rearranged burrow_split to fold_burrow to allow composition with fold_map
haftmann
parents:
18514
diff
changeset
|
89 |
val fold_burrow: ('a list -> 'c -> 'b list * 'd) -> 'a list list -> 'c -> 'b list list * 'd |
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
90 |
val maps: ('a -> 'b list) -> 'a list -> 'b list |
19011 | 91 |
val chop: int -> 'a list -> 'a list * 'a list |
4713 | 92 |
val dropwhile: ('a -> bool) -> 'a list -> 'a list |
18278 | 93 |
val nth: 'a list -> int -> 'a |
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
94 |
val nth_map: int -> ('a -> 'a) -> 'a list -> 'a list |
18286 | 95 |
val nth_list: 'a list list -> int -> 'a list |
18514 | 96 |
val map_index: (int * 'a -> 'b) -> 'a list -> 'b list |
97 |
val fold_index: (int * 'a -> 'b -> 'b) -> 'a list -> 'b -> 'b |
|
4621 | 98 |
val split_last: 'a list -> 'a list * 'a |
99 |
val find_index: ('a -> bool) -> 'a list -> int |
|
100 |
val find_index_eq: ''a -> ''a list -> int |
|
101 |
val find_first: ('a -> bool) -> 'a list -> 'a option |
|
19233
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
102 |
val get_index: ('a -> 'b option) -> 'a list -> (int * 'b) option |
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
103 |
val get_first: ('a -> 'b option) -> 'a list -> 'b option |
19454
46a7e133f802
moved coalesce to AList, added equality predicates to library
haftmann
parents:
19424
diff
changeset
|
104 |
val eq_list: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
18330 | 105 |
val map2: ('a -> 'b -> 'c) -> 'a list -> 'b list -> 'c list |
106 |
val fold2: ('a -> 'b -> 'c -> 'c) -> 'a list -> 'b list -> 'c -> 'c |
|
19799 | 107 |
val zip_options: 'a list -> 'b option list -> ('a * 'b) list |
18330 | 108 |
val ~~ : 'a list * 'b list -> ('a * 'b) list |
109 |
val split_list: ('a * 'b) list -> 'a list * 'b list |
|
4621 | 110 |
val separate: 'a -> 'a list -> 'a list |
111 |
val replicate: int -> 'a -> 'a list |
|
18148 | 112 |
val multiply: 'a list -> 'a list list -> 'a list list |
14792 | 113 |
val product: 'a list -> 'b list -> ('a * 'b) list |
16129 | 114 |
val filter: ('a -> bool) -> 'a list -> 'a list |
4621 | 115 |
val filter_out: ('a -> bool) -> 'a list -> 'a list |
19483
55ee839198bd
renamed mapfilter to map_filter, made pervasive (again);
wenzelm
parents:
19474
diff
changeset
|
116 |
val map_filter: ('a -> 'b option) -> 'a list -> 'b list |
18441 | 117 |
val is_prefix: ('a * 'a -> bool) -> 'a list -> 'a list -> bool |
4621 | 118 |
val take_prefix: ('a -> bool) -> 'a list -> 'a list * 'a list |
20108 | 119 |
val chop_prefix: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list * ('a list * 'b list) |
4621 | 120 |
val take_suffix: ('a -> bool) -> 'a list -> 'a list * 'a list |
12249 | 121 |
val prefixes1: 'a list -> 'a list list |
19011 | 122 |
val prefixes: 'a list -> 'a list list |
12249 | 123 |
val suffixes1: 'a list -> 'a list list |
19011 | 124 |
val suffixes: 'a list -> 'a list list |
4621 | 125 |
|
126 |
(*integers*) |
|
15965
f422f8283491
Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents:
15760
diff
changeset
|
127 |
val gcd: IntInf.int * IntInf.int -> IntInf.int |
f422f8283491
Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents:
15760
diff
changeset
|
128 |
val lcm: IntInf.int * IntInf.int -> IntInf.int |
4621 | 129 |
val inc: int ref -> int |
130 |
val dec: int ref -> int |
|
131 |
val upto: int * int -> int list |
|
132 |
val downto: int * int -> int list |
|
133 |
val radixpand: int * int -> int list |
|
134 |
val radixstring: int * string * int -> string |
|
135 |
val string_of_int: int -> string |
|
21942
d6218d0f9ec3
added signed_string_of_int (pruduces proper - instead of SML's ~);
wenzelm
parents:
21920
diff
changeset
|
136 |
val signed_string_of_int: int -> string |
4621 | 137 |
val string_of_indexname: string * int -> string |
20095 | 138 |
val read_intinf: int -> string list -> IntInf.int * string list |
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
139 |
val read_int: string list -> int * string list |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
140 |
val oct_char: string -> string |
4621 | 141 |
|
142 |
(*strings*) |
|
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
143 |
val nth_string: string -> int -> string |
16188 | 144 |
val fold_string: (string -> 'a -> 'a) -> string -> 'a -> 'a |
6312 | 145 |
val exists_string: (string -> bool) -> string -> bool |
16188 | 146 |
val forall_string: (string -> bool) -> string -> bool |
4621 | 147 |
val enclose: string -> string -> string -> string |
6642 | 148 |
val unenclose: string -> string |
4621 | 149 |
val quote: string -> string |
150 |
val space_implode: string -> string list -> string |
|
151 |
val commas: string list -> string |
|
152 |
val commas_quote: string list -> string |
|
153 |
val cat_lines: string list -> string |
|
154 |
val space_explode: string -> string -> string list |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
155 |
val split_lines: string -> string list |
5942 | 156 |
val prefix_lines: string -> string -> string |
7712 | 157 |
val untabify: string list -> string list |
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
158 |
val prefix: string -> string -> string |
5285 | 159 |
val suffix: string -> string -> string |
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
160 |
val unprefix: string -> string -> string |
5285 | 161 |
val unsuffix: string -> string -> string |
10951 | 162 |
val replicate_string: int -> string -> string |
14926 | 163 |
val translate_string: (string -> string) -> string -> string |
4621 | 164 |
|
16492 | 165 |
(*lists as sets -- see also Pure/General/ord_list.ML*) |
18923 | 166 |
val member: ('b * 'a -> bool) -> 'a list -> 'b -> bool |
167 |
val insert: ('a * 'a -> bool) -> 'a -> 'a list -> 'a list |
|
168 |
val remove: ('b * 'a -> bool) -> 'b -> 'a list -> 'a list |
|
19301 | 169 |
val subtract: ('b * 'a -> bool) -> 'b list -> 'a list -> 'a list |
18923 | 170 |
val merge: ('a * 'a -> bool) -> 'a list * 'a list -> 'a list |
4621 | 171 |
val mem: ''a * ''a list -> bool |
172 |
val mem_int: int * int list -> bool |
|
173 |
val mem_string: string * string list -> bool |
|
174 |
val union: ''a list * ''a list -> ''a list |
|
175 |
val union_int: int list * int list -> int list |
|
176 |
val union_string: string list * string list -> string list |
|
177 |
val gen_union: ('a * 'a -> bool) -> 'a list * 'a list -> 'a list |
|
7090 | 178 |
val gen_inter: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list |
4621 | 179 |
val inter: ''a list * ''a list -> ''a list |
180 |
val inter_int: int list * int list -> int list |
|
181 |
val inter_string: string list * string list -> string list |
|
182 |
val subset: ''a list * ''a list -> bool |
|
183 |
val subset_int: int list * int list -> bool |
|
184 |
val subset_string: string list * string list -> bool |
|
185 |
val eq_set: ''a list * ''a list -> bool |
|
186 |
val eq_set_string: string list * string list -> bool |
|
187 |
val gen_subset: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
|
19301 | 188 |
val gen_eq_set: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
4621 | 189 |
val \ : ''a list * ''a -> ''a list |
190 |
val \\ : ''a list * ''a list -> ''a list |
|
19046
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19011
diff
changeset
|
191 |
val distinct: ('a * 'a -> bool) -> 'a list -> 'a list |
18966 | 192 |
val duplicates: ('a * 'a -> bool) -> 'a list -> 'a list |
16878 | 193 |
val has_duplicates: ('a * 'a -> bool) -> 'a list -> bool |
4621 | 194 |
|
23220 | 195 |
(*lists as multisets*) |
22142 | 196 |
val remove1: ('b * 'a -> bool) -> 'b -> 'a list -> 'a list |
23220 | 197 |
val submultiset: ('a * 'b -> bool) -> 'a list * 'b list -> bool |
4621 | 198 |
|
199 |
(*balanced trees*) |
|
200 |
exception Balance |
|
201 |
val fold_bal: ('a * 'a -> 'a) -> 'a list -> 'a |
|
202 |
val access_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> int -> 'a |
|
203 |
val accesses_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> 'a list |
|
204 |
||
205 |
(*orders*) |
|
18966 | 206 |
val is_equal: order -> bool |
4621 | 207 |
val rev_order: order -> order |
208 |
val make_ord: ('a * 'a -> bool) -> 'a * 'a -> order |
|
209 |
val int_ord: int * int -> order |
|
210 |
val string_ord: string * string -> order |
|
16676 | 211 |
val fast_string_ord: string * string -> order |
16492 | 212 |
val option_ord: ('a * 'b -> order) -> 'a option * 'b option -> order |
4621 | 213 |
val prod_ord: ('a * 'b -> order) -> ('c * 'd -> order) -> ('a * 'c) * ('b * 'd) -> order |
214 |
val dict_ord: ('a * 'b -> order) -> 'a list * 'b list -> order |
|
215 |
val list_ord: ('a * 'b -> order) -> 'a list * 'b list -> order |
|
216 |
val sort: ('a * 'a -> order) -> 'a list -> 'a list |
|
18427 | 217 |
val sort_distinct: ('a * 'a -> order) -> 'a list -> 'a list |
4621 | 218 |
val sort_strings: string list -> string list |
219 |
val sort_wrt: ('a -> string) -> 'a list -> 'a list |
|
220 |
||
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
221 |
(*random numbers*) |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
222 |
exception RANDOM |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
223 |
val random: unit -> real |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
224 |
val random_range: int -> int -> int |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
225 |
val one_of: 'a list -> 'a |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
226 |
val frequency: (int * 'a) list -> 'a |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
227 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
228 |
(*current directory*) |
4621 | 229 |
val cd: string -> unit |
230 |
val pwd: unit -> string |
|
231 |
||
232 |
(*misc*) |
|
19644
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
233 |
val divide_and_conquer: ('a -> 'a list * ('b list -> 'b)) -> 'a -> 'b |
4621 | 234 |
val partition_eq: ('a * 'a -> bool) -> 'a list -> 'a list list |
235 |
val partition_list: (int -> 'a -> bool) -> int -> int -> 'a list -> 'a list list |
|
236 |
val gensym: string -> string |
|
16439 | 237 |
type stamp |
238 |
val stamp: unit -> stamp |
|
239 |
type serial |
|
240 |
val serial: unit -> serial |
|
19512 | 241 |
val serial_string: unit -> string |
16535
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
242 |
structure Object: sig type T end |
4621 | 243 |
end; |
244 |
||
15745 | 245 |
signature LIBRARY = |
15570 | 246 |
sig |
15745 | 247 |
include BASIC_LIBRARY |
15570 | 248 |
val foldl: ('a * 'b -> 'a) -> 'a * 'b list -> 'a |
249 |
val foldr: ('a * 'b -> 'b) -> 'a list * 'b -> 'b |
|
250 |
val take: int * 'a list -> 'a list |
|
251 |
val drop: int * 'a list -> 'a list |
|
252 |
val last_elem: 'a list -> 'a |
|
253 |
end; |
|
254 |
||
15745 | 255 |
structure Library: LIBRARY = |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
256 |
struct |
0 | 257 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
258 |
(* functions *) |
0 | 259 |
|
16842 | 260 |
fun I x = x; |
261 |
fun K x = fn _ => x; |
|
23220 | 262 |
fun flip f x y = f y x; |
233 | 263 |
fun curry f x y = f (x, y); |
264 |
fun uncurry f (x, y) = f x y; |
|
0 | 265 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
266 |
(*application and structured results -- old version*) |
16705 | 267 |
fun (x, y) |>>> f = let val (x', z) = f x in (x', (y, z)) end; |
16842 | 268 |
|
17141
4b0dc89de43b
added ? combinator for conditional transformations
haftmann
parents:
17101
diff
changeset
|
269 |
(*conditional application*) |
21565 | 270 |
fun b ? f = fn x => if b then f x else x; |
17141
4b0dc89de43b
added ? combinator for conditional transformations
haftmann
parents:
17101
diff
changeset
|
271 |
|
16721 | 272 |
(*composition with multiple args*) |
273 |
fun (f oo g) x y = f (g x y); |
|
274 |
fun (f ooo g) x y z = f (g x y z); |
|
275 |
fun (f oooo g) x y z w = f (g x y z w); |
|
276 |
||
233 | 277 |
(*function exponentiation: f(...(f x)...) with n applications of f*) |
278 |
fun funpow n f x = |
|
279 |
let fun rep (0, x) = x |
|
280 |
| rep (n, x) = rep (n - 1, f x) |
|
281 |
in rep (n, x) end; |
|
160 | 282 |
|
283 |
||
17341 | 284 |
(* exceptions *) |
285 |
||
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
286 |
val do_transform_failure = ref true; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
287 |
|
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
288 |
fun transform_failure exn f x = |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
289 |
if ! do_transform_failure then |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
290 |
f x handle Interrupt => raise Interrupt | e => raise exn e |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
291 |
else f x; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
292 |
|
17341 | 293 |
exception EXCEPTION of exn * string; |
6959 | 294 |
|
14868 | 295 |
datatype 'a result = |
296 |
Result of 'a | |
|
297 |
Exn of exn; |
|
298 |
||
299 |
fun capture f x = Result (f x) handle e => Exn e; |
|
300 |
||
301 |
fun release (Result y) = y |
|
302 |
| release (Exn e) = raise e; |
|
303 |
||
15531 | 304 |
fun get_result (Result x) = SOME x |
305 |
| get_result _ = NONE; |
|
14868 | 306 |
|
15531 | 307 |
fun get_exn (Exn exn) = SOME exn |
308 |
| get_exn _ = NONE; |
|
14868 | 309 |
|
310 |
||
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
311 |
(* errors *) |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
312 |
|
19542 | 313 |
exception SYS_ERROR of string; |
314 |
fun sys_error msg = raise SYS_ERROR msg; |
|
315 |
||
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
316 |
exception ERROR of string; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
317 |
fun error msg = raise ERROR msg; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
318 |
|
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
319 |
fun cat_error "" msg = error msg |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
320 |
| cat_error msg1 msg2 = error (msg1 ^ "\n" ^ msg2); |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
321 |
|
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
322 |
fun assert_all pred list msg = |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
323 |
let |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
324 |
fun ass [] = () |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
325 |
| ass (x :: xs) = if pred x then ass xs else error (msg x); |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
326 |
in ass list end; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
327 |
|
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
328 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
329 |
(* pairs *) |
233 | 330 |
|
331 |
fun pair x y = (x, y); |
|
332 |
fun rpair x y = (y, x); |
|
333 |
||
334 |
fun fst (x, y) = x; |
|
335 |
fun snd (x, y) = y; |
|
336 |
||
17498
d83af87bbdc5
improved eq_fst and eq_snd, removed some deprecated stuff
haftmann
parents:
17486
diff
changeset
|
337 |
fun eq_fst eq ((x1, _), (x2, _)) = eq (x1, x2); |
d83af87bbdc5
improved eq_fst and eq_snd, removed some deprecated stuff
haftmann
parents:
17486
diff
changeset
|
338 |
fun eq_snd eq ((_, y1), (_, y2)) = eq (y1, y2); |
19454
46a7e133f802
moved coalesce to AList, added equality predicates to library
haftmann
parents:
19424
diff
changeset
|
339 |
fun eq_pair eqx eqy ((x1, y1), (x2, y2)) = eqx (x1, x2) andalso eqy (y1, y2); |
233 | 340 |
|
341 |
fun swap (x, y) = (y, x); |
|
342 |
||
343 |
fun apfst f (x, y) = (f x, y); |
|
344 |
fun apsnd f (x, y) = (x, f y); |
|
4212 | 345 |
fun pairself f (x, y) = (f x, f y); |
233 | 346 |
|
347 |
||
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
348 |
(* booleans *) |
233 | 349 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
350 |
(*polymorphic equality*) |
233 | 351 |
fun equal x y = x = y; |
352 |
fun not_equal x y = x <> y; |
|
353 |
||
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
354 |
(*combining predicates*) |
16721 | 355 |
fun p orf q = fn x => p x orelse q x; |
356 |
fun p andf q = fn x => p x andalso q x; |
|
233 | 357 |
|
358 |
(*exists pred [x1, ..., xn] ===> pred x1 orelse ... orelse pred xn*) |
|
359 |
fun exists (pred: 'a -> bool) : 'a list -> bool = |
|
360 |
let fun boolf [] = false |
|
361 |
| boolf (x :: xs) = pred x orelse boolf xs |
|
362 |
in boolf end; |
|
363 |
||
364 |
(*forall pred [x1, ..., xn] ===> pred x1 andalso ... andalso pred xn*) |
|
365 |
fun forall (pred: 'a -> bool) : 'a list -> bool = |
|
366 |
let fun boolf [] = true |
|
367 |
| boolf (x :: xs) = pred x andalso boolf xs |
|
368 |
in boolf end; |
|
0 | 369 |
|
19644
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
370 |
|
380 | 371 |
(* flags *) |
372 |
||
373 |
fun set flag = (flag := true; true); |
|
374 |
fun reset flag = (flag := false; false); |
|
375 |
fun toggle flag = (flag := not (! flag); ! flag); |
|
376 |
||
9118 | 377 |
fun change r f = r := f (! r); |
378 |
||
18712 | 379 |
(*temporarily set flag during execution*) |
2978 | 380 |
fun setmp flag value f x = |
2958 | 381 |
let |
382 |
val orig_value = ! flag; |
|
18712 | 383 |
val _ = flag := value; |
384 |
val result = capture f x; |
|
385 |
val _ = flag := orig_value; |
|
386 |
in release result end; |
|
2958 | 387 |
|
19644
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
388 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
389 |
|
233 | 390 |
(** lists **) |
391 |
||
15570 | 392 |
exception UnequalLengths; |
233 | 393 |
|
5285 | 394 |
fun single x = [x]; |
233 | 395 |
|
20882 | 396 |
fun the_single [x] = x |
397 |
| the_single _ = raise Empty; |
|
398 |
||
399 |
fun singleton f x = the_single (f [x]); |
|
19273 | 400 |
|
5904 | 401 |
fun apply [] x = x |
402 |
| apply (f :: fs) x = apply fs (f x); |
|
403 |
||
233 | 404 |
|
21395
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
wenzelm
parents:
21335
diff
changeset
|
405 |
(* fold -- old versions *) |
16691
539b9cc282fa
added combinatros '||>' and '||>>' and fold_map fitting nicely to ST combinator '|->'
haftmann
parents:
16688
diff
changeset
|
406 |
|
233 | 407 |
(*the following versions of fold are designed to fit nicely with infixes*) |
0 | 408 |
|
233 | 409 |
(* (op @) (e, [x1, ..., xn]) ===> ((e @ x1) @ x2) ... @ xn |
410 |
for operators that associate to the left (TAIL RECURSIVE)*) |
|
411 |
fun foldl (f: 'a * 'b -> 'a) : 'a * 'b list -> 'a = |
|
412 |
let fun itl (e, []) = e |
|
413 |
| itl (e, a::l) = itl (f(e, a), l) |
|
414 |
in itl end; |
|
415 |
||
416 |
(* (op @) ([x1, ..., xn], e) ===> x1 @ (x2 ... @ (xn @ e)) |
|
417 |
for operators that associate to the right (not tail recursive)*) |
|
418 |
fun foldr f (l, e) = |
|
419 |
let fun itr [] = e |
|
420 |
| itr (a::l) = f(a, itr l) |
|
421 |
in itr l end; |
|
422 |
||
423 |
(* (op @) [x1, ..., xn] ===> x1 @ (x2 ... @ (x[n-1] @ xn)) |
|
424 |
for n > 0, operators that associate to the right (not tail recursive)*) |
|
20443 | 425 |
fun foldr1 f [] = raise Empty |
20510 | 426 |
| foldr1 f l = |
20443 | 427 |
let fun itr [x] = x |
20510 | 428 |
| itr (x::l) = f(x, itr l) |
20443 | 429 |
in itr l end; |
233 | 430 |
|
16705 | 431 |
fun foldl_map f = |
432 |
let |
|
433 |
fun fold_aux (x, []) = (x, []) |
|
434 |
| fold_aux (x, y :: ys) = |
|
435 |
let |
|
436 |
val (x', y') = f (x, y); |
|
437 |
val (x'', ys') = fold_aux (x', ys); |
|
438 |
in (x'', y' :: ys') end; |
|
439 |
in fold_aux end; |
|
440 |
||
233 | 441 |
|
442 |
(* basic list functions *) |
|
443 |
||
20510 | 444 |
fun eq_list eq (list1, list2) = |
20348 | 445 |
let |
20510 | 446 |
fun eq_lst (x :: xs, y :: ys) = eq (x, y) andalso eq_lst (xs, ys) |
447 |
| eq_lst _ = true; |
|
448 |
in length list1 = length list2 andalso eq_lst (list1, list2) end; |
|
20348 | 449 |
|
19483
55ee839198bd
renamed mapfilter to map_filter, made pervasive (again);
wenzelm
parents:
19474
diff
changeset
|
450 |
fun maps f [] = [] |
55ee839198bd
renamed mapfilter to map_filter, made pervasive (again);
wenzelm
parents:
19474
diff
changeset
|
451 |
| maps f (x :: xs) = f x @ maps f xs; |
55ee839198bd
renamed mapfilter to map_filter, made pervasive (again);
wenzelm
parents:
19474
diff
changeset
|
452 |
|
23220 | 453 |
fun chop 0 xs = ([], xs) |
454 |
| chop _ [] = ([], []) |
|
455 |
| chop n (x :: xs) = chop (n - 1) xs |>> cons x; |
|
19011 | 456 |
|
233 | 457 |
(*take the first n elements from a list*) |
458 |
fun take (n, []) = [] |
|
459 |
| take (n, x :: xs) = |
|
460 |
if n > 0 then x :: take (n - 1, xs) else []; |
|
461 |
||
462 |
(*drop the first n elements from a list*) |
|
463 |
fun drop (n, []) = [] |
|
464 |
| drop (n, x :: xs) = |
|
465 |
if n > 0 then drop (n - 1, xs) else x :: xs; |
|
0 | 466 |
|
4713 | 467 |
fun dropwhile P [] = [] |
468 |
| dropwhile P (ys as x::xs) = if P x then dropwhile P xs else ys; |
|
469 |
||
233 | 470 |
(*return nth element of a list, where 0 designates the first element; |
18461 | 471 |
raise Subscript if list too short*) |
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
472 |
fun nth xs i = List.nth (xs, i); |
233 | 473 |
|
18461 | 474 |
fun nth_list xss i = nth xss i handle Subscript => []; |
475 |
||
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
476 |
fun nth_map 0 f (x :: xs) = f x :: xs |
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
477 |
| nth_map n f (x :: xs) = x :: nth_map (n - 1) f xs |
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
478 |
| nth_map _ _ [] = raise Subscript; |
11773 | 479 |
|
18514 | 480 |
fun map_index f = |
481 |
let |
|
482 |
fun mapp _ [] = [] |
|
483 |
| mapp i (x :: xs) = f (i, x) :: mapp (i+1) xs |
|
484 |
in mapp 0 end; |
|
485 |
||
21118 | 486 |
fun fold_index f = |
487 |
let |
|
488 |
fun fold_aux _ [] y = y |
|
489 |
| fold_aux i (x :: xs) y = fold_aux (i+1) xs (f (i, x) y); |
|
490 |
in fold_aux 0 end; |
|
491 |
||
15570 | 492 |
val last_elem = List.last; |
233 | 493 |
|
3762 | 494 |
(*rear decomposition*) |
15570 | 495 |
fun split_last [] = raise Empty |
3762 | 496 |
| split_last [x] = ([], x) |
497 |
| split_last (x :: xs) = apfst (cons x) (split_last xs); |
|
498 |
||
4212 | 499 |
(*find the position of an element in a list*) |
500 |
fun find_index pred = |
|
501 |
let fun find _ [] = ~1 |
|
502 |
| find n (x :: xs) = if pred x then n else find (n + 1) xs; |
|
503 |
in find 0 end; |
|
3762 | 504 |
|
4224 | 505 |
fun find_index_eq x = find_index (equal x); |
4212 | 506 |
|
507 |
(*find first element satisfying predicate*) |
|
22593 | 508 |
val find_first = List.find; |
233 | 509 |
|
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
510 |
(*get first element by lookup function*) |
15531 | 511 |
fun get_first _ [] = NONE |
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
512 |
| get_first f (x :: xs) = |
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
513 |
(case f x of |
15531 | 514 |
NONE => get_first f xs |
4916
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
515 |
| some => some); |
fe8b0c82691b
get_first: ('a -> 'b option) -> 'a list -> 'b option;
wenzelm
parents:
4893
diff
changeset
|
516 |
|
19233
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
517 |
fun get_index f = |
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
518 |
let |
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
519 |
fun get _ [] = NONE |
19461 | 520 |
| get i (x :: xs) = |
19233
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
521 |
case f x |
19461 | 522 |
of NONE => get (i + 1) xs |
19233
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
523 |
| SOME y => SOME (i, y) |
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
524 |
in get 0 end; |
77ca20b0ed77
renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents:
19119
diff
changeset
|
525 |
|
15531 | 526 |
val flat = List.concat; |
233 | 527 |
|
12136 | 528 |
fun unflat (xs :: xss) ys = |
19424 | 529 |
let val (ps, qs) = chop (length xs) ys |
13629 | 530 |
in ps :: unflat xss qs end |
12136 | 531 |
| unflat [] [] = [] |
15570 | 532 |
| unflat _ _ = raise UnequalLengths; |
12136 | 533 |
|
21479
63e7eb863ae6
moved string_of_pair/list/option to structure ML_Syntax;
wenzelm
parents:
21395
diff
changeset
|
534 |
fun burrow f xss = unflat xss (f (flat xss)); |
18359 | 535 |
|
18549
5308a6ea3b96
rearranged burrow_split to fold_burrow to allow composition with fold_map
haftmann
parents:
18514
diff
changeset
|
536 |
fun fold_burrow f xss s = |
5308a6ea3b96
rearranged burrow_split to fold_burrow to allow composition with fold_map
haftmann
parents:
18514
diff
changeset
|
537 |
apfst (unflat xss) (f (flat xss) s); |
18359 | 538 |
|
233 | 539 |
(*separate s [x1, x2, ..., xn] ===> [x1, s, x2, s, ..., s, xn]*) |
540 |
fun separate s (x :: (xs as _ :: _)) = x :: s :: separate s xs |
|
541 |
| separate _ xs = xs; |
|
542 |
||
543 |
(*make the list [x, x, ..., x] of length n*) |
|
544 |
fun replicate n (x: 'a) : 'a list = |
|
545 |
let fun rep (0, xs) = xs |
|
546 |
| rep (n, xs) = rep (n - 1, x :: xs) |
|
547 |
in |
|
15570 | 548 |
if n < 0 then raise Subscript |
233 | 549 |
else rep (n, []) |
550 |
end; |
|
551 |
||
14926 | 552 |
fun translate_string f = String.translate (f o String.str); |
553 |
||
4248
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
554 |
(*multiply [a, b, c, ...] * [xs, ys, zs, ...]*) |
18148 | 555 |
fun multiply [] _ = [] |
556 |
| multiply (x :: xs) yss = map (cons x) yss @ multiply xs yss; |
|
4248
5e8a31c41d44
added get_error: 'a error -> string option, get_ok: 'a error -> 'a option;
wenzelm
parents:
4224
diff
changeset
|
557 |
|
14792 | 558 |
(*direct product*) |
559 |
fun product _ [] = [] |
|
560 |
| product [] _ = [] |
|
561 |
| product (x :: xs) ys = map (pair x) ys @ product xs ys; |
|
562 |
||
233 | 563 |
|
564 |
(* filter *) |
|
565 |
||
566 |
(*copy the list preserving elements that satisfy the predicate*) |
|
15531 | 567 |
val filter = List.filter; |
0 | 568 |
fun filter_out f = filter (not o f); |
19483
55ee839198bd
renamed mapfilter to map_filter, made pervasive (again);
wenzelm
parents:
19474
diff
changeset
|
569 |
val map_filter = List.mapPartial; |
233 | 570 |
|
571 |
||
572 |
(* lists of pairs *) |
|
573 |
||
15570 | 574 |
exception UnequalLengths; |
575 |
||
18330 | 576 |
fun map2 _ [] [] = [] |
577 |
| map2 f (x :: xs) (y :: ys) = f x y :: map2 f xs ys |
|
578 |
| map2 _ _ _ = raise UnequalLengths; |
|
380 | 579 |
|
23220 | 580 |
fun fold2 f [] [] z = z |
581 |
| fold2 f (x :: xs) (y :: ys) z = fold2 f xs ys (f x y z) |
|
582 |
| fold2 f _ _ _ = raise UnequalLengths; |
|
380 | 583 |
|
19799 | 584 |
fun zip_options (x :: xs) (SOME y :: ys) = (x, y) :: zip_options xs ys |
585 |
| zip_options (_ :: xs) (NONE :: ys) = zip_options xs ys |
|
586 |
| zip_options _ [] = [] |
|
587 |
| zip_options [] _ = raise UnequalLengths; |
|
4956
a7538e43896e
added foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list;
wenzelm
parents:
4945
diff
changeset
|
588 |
|
233 | 589 |
(*combine two lists forming a list of pairs: |
590 |
[x1, ..., xn] ~~ [y1, ..., yn] ===> [(x1, y1), ..., (xn, yn)]*) |
|
591 |
fun [] ~~ [] = [] |
|
592 |
| (x :: xs) ~~ (y :: ys) = (x, y) :: (xs ~~ ys) |
|
15570 | 593 |
| _ ~~ _ = raise UnequalLengths; |
233 | 594 |
|
595 |
(*inverse of ~~; the old 'split': |
|
596 |
[(x1, y1), ..., (xn, yn)] ===> ([x1, ..., xn], [y1, ..., yn])*) |
|
15570 | 597 |
val split_list = ListPair.unzip; |
233 | 598 |
|
599 |
||
600 |
(* prefixes, suffixes *) |
|
601 |
||
18441 | 602 |
fun is_prefix _ [] _ = true |
603 |
| is_prefix eq (x :: xs) (y :: ys) = eq (x, y) andalso is_prefix eq xs ys |
|
604 |
| is_prefix eq _ _ = false; |
|
233 | 605 |
|
606 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., x(i-1)], [xi, ..., xn]) |
|
607 |
where xi is the first element that does not satisfy the predicate*) |
|
608 |
fun take_prefix (pred : 'a -> bool) (xs: 'a list) : 'a list * 'a list = |
|
609 |
let fun take (rxs, []) = (rev rxs, []) |
|
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
610 |
| take (rxs, x :: xs) = |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
611 |
if pred x then take(x :: rxs, xs) else (rev rxs, x :: xs) |
233 | 612 |
in take([], xs) end; |
613 |
||
20108 | 614 |
fun chop_prefix eq ([], ys) = ([], ([], ys)) |
615 |
| chop_prefix eq (xs, []) = ([], (xs, [])) |
|
23220 | 616 |
| chop_prefix eq (xs as x :: xs', ys as y :: ys') = |
20108 | 617 |
if eq (x, y) then |
618 |
let val (ps', xys'') = chop_prefix eq (xs', ys') |
|
23220 | 619 |
in (x :: ps', xys'') end |
20108 | 620 |
else ([], (xs, ys)); |
621 |
||
233 | 622 |
(* [x1, ..., xi, ..., xn] ---> ([x1, ..., xi], [x(i+1), ..., xn]) |
623 |
where xi is the last element that does not satisfy the predicate*) |
|
624 |
fun take_suffix _ [] = ([], []) |
|
625 |
| take_suffix pred (x :: xs) = |
|
626 |
(case take_suffix pred xs of |
|
627 |
([], sffx) => if pred x then ([], x :: sffx) else ([x], sffx) |
|
628 |
| (prfx, sffx) => (x :: prfx, sffx)); |
|
629 |
||
12249 | 630 |
fun prefixes1 [] = [] |
631 |
| prefixes1 (x :: xs) = map (cons x) ([] :: prefixes1 xs); |
|
632 |
||
19011 | 633 |
fun prefixes xs = [] :: prefixes1 xs; |
634 |
||
12249 | 635 |
fun suffixes1 xs = map rev (prefixes1 (rev xs)); |
19011 | 636 |
fun suffixes xs = [] :: suffixes1 xs; |
233 | 637 |
|
23220 | 638 |
|
639 |
||
233 | 640 |
(** integers **) |
641 |
||
16439 | 642 |
fun gcd (x, y) = |
15965
f422f8283491
Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents:
15760
diff
changeset
|
643 |
let fun gxd x y : IntInf.int = |
21859 | 644 |
if y = IntInf.fromInt 0 then x else gxd y (x mod y) |
10692 | 645 |
in if x < y then gxd y x else gxd x y end; |
646 |
||
16439 | 647 |
fun lcm (x, y) = (x * y) div gcd (x, y); |
10692 | 648 |
|
2958 | 649 |
fun inc i = (i := ! i + 1; ! i); |
650 |
fun dec i = (i := ! i - 1; ! i); |
|
233 | 651 |
|
652 |
||
653 |
(* lists of integers *) |
|
654 |
||
655 |
(*make the list [from, from + 1, ..., to]*) |
|
21859 | 656 |
fun (i upto j) = |
657 |
if i > j then [] else i :: (i + 1 upto j); |
|
233 | 658 |
|
659 |
(*make the list [from, from - 1, ..., to]*) |
|
21859 | 660 |
fun (i downto j) = |
661 |
if i < j then [] else i :: (i - 1 downto j); |
|
233 | 662 |
|
663 |
||
664 |
(* convert integers to strings *) |
|
665 |
||
666 |
(*expand the number in the given base; |
|
667 |
example: radixpand (2, 8) gives [1, 0, 0, 0]*) |
|
668 |
fun radixpand (base, num) : int list = |
|
669 |
let |
|
670 |
fun radix (n, tail) = |
|
671 |
if n < base then n :: tail |
|
672 |
else radix (n div base, (n mod base) :: tail) |
|
673 |
in radix (num, []) end; |
|
674 |
||
675 |
(*expands a number into a string of characters starting from "zerochar"; |
|
676 |
example: radixstring (2, "0", 8) gives "1000"*) |
|
677 |
fun radixstring (base, zerochar, num) = |
|
678 |
let val offset = ord zerochar; |
|
679 |
fun chrof n = chr (offset + n) |
|
680 |
in implode (map chrof (radixpand (base, num))) end; |
|
681 |
||
682 |
||
3407
afd288caf573
Removal of radixstring from string_of_int; addition of string_of_indexname
paulson
parents:
3393
diff
changeset
|
683 |
val string_of_int = Int.toString; |
233 | 684 |
|
21942
d6218d0f9ec3
added signed_string_of_int (pruduces proper - instead of SML's ~);
wenzelm
parents:
21920
diff
changeset
|
685 |
fun signed_string_of_int i = |
d6218d0f9ec3
added signed_string_of_int (pruduces proper - instead of SML's ~);
wenzelm
parents:
21920
diff
changeset
|
686 |
if i < 0 then "-" ^ string_of_int (~ i) else string_of_int i; |
d6218d0f9ec3
added signed_string_of_int (pruduces proper - instead of SML's ~);
wenzelm
parents:
21920
diff
changeset
|
687 |
|
23220 | 688 |
fun string_of_indexname (a, 0) = a |
689 |
| string_of_indexname (a, i) = a ^ "_" ^ string_of_int i; |
|
233 | 690 |
|
691 |
||
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
692 |
(* read integers *) |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
693 |
|
20095 | 694 |
fun read_intinf radix cs = |
695 |
let |
|
696 |
val zero = ord "0"; |
|
697 |
val limit = zero + radix; |
|
698 |
fun scan (num, []) = (num, []) |
|
699 |
| scan (num, c :: cs) = |
|
700 |
if zero <= ord c andalso ord c < limit then |
|
701 |
scan (IntInf.fromInt radix * num + IntInf.fromInt (ord c - zero), cs) |
|
702 |
else (num, c :: cs); |
|
21859 | 703 |
in scan (IntInf.fromInt 0, cs) end; |
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
704 |
|
20095 | 705 |
fun read_int cs = apfst IntInf.toInt (read_intinf 10 cs); |
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
706 |
|
20095 | 707 |
fun oct_char s = chr (IntInf.toInt (#1 (read_intinf 8 (explode s)))); |
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
708 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
709 |
|
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
710 |
|
233 | 711 |
(** strings **) |
712 |
||
16188 | 713 |
(* functions tuned for strings, avoiding explode *) |
6312 | 714 |
|
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
715 |
fun nth_string str i = |
6959 | 716 |
(case try String.substring (str, i, 1) of |
15531 | 717 |
SOME s => s |
15570 | 718 |
| NONE => raise Subscript); |
6312 | 719 |
|
16188 | 720 |
fun fold_string f str x0 = |
6282 | 721 |
let |
722 |
val n = size str; |
|
16188 | 723 |
fun iter (x, i) = |
724 |
if i < n then iter (f (String.substring (str, i, 1)) x, i + 1) else x; |
|
725 |
in iter (x0, 0) end; |
|
6282 | 726 |
|
14968 | 727 |
fun exists_string pred str = |
728 |
let |
|
729 |
val n = size str; |
|
730 |
fun ex i = i < n andalso (pred (String.substring (str, i, 1)) orelse ex (i + 1)); |
|
731 |
in ex 0 end; |
|
6312 | 732 |
|
16188 | 733 |
fun forall_string pred = not o exists_string (not o pred); |
734 |
||
512
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
735 |
(*enclose in brackets*) |
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
736 |
fun enclose lpar rpar str = lpar ^ str ^ rpar; |
6642 | 737 |
fun unenclose str = String.substring (str, 1, size str - 2); |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
738 |
|
233 | 739 |
(*simple quoting (does not escape special chars)*) |
512
55755ed9fab9
Pure/library/enclose, Pure/Syntax/pretty/enclose: renamed from parents
lcp
parents:
410
diff
changeset
|
740 |
val quote = enclose "\"" "\""; |
233 | 741 |
|
4212 | 742 |
(*space_implode "..." (explode "hello") = "h...e...l...l...o"*) |
233 | 743 |
fun space_implode a bs = implode (separate a bs); |
744 |
||
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
745 |
val commas = space_implode ", "; |
380 | 746 |
val commas_quote = commas o map quote; |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
747 |
|
233 | 748 |
(*concatenate messages, one per line, into a string*) |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
749 |
val cat_lines = space_implode "\n"; |
233 | 750 |
|
4212 | 751 |
(*space_explode "." "h.e..l.lo" = ["h", "e", "", "l", "lo"]*) |
3832
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
752 |
fun space_explode _ "" = [] |
21899 | 753 |
| space_explode sep s = String.fields (fn c => str c = sep) s; |
3832
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
754 |
|
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
755 |
val split_lines = space_explode "\n"; |
17a20a2af8f5
fixed space_explode, old one retained as BAD_space_explode;
wenzelm
parents:
3762
diff
changeset
|
756 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
757 |
fun prefix_lines "" txt = txt |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
758 |
| prefix_lines prfx txt = txt |> split_lines |> map (fn s => prfx ^ s) |> cat_lines; |
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
759 |
|
7712 | 760 |
fun untabify chs = |
761 |
let |
|
762 |
val tab_width = 8; |
|
763 |
||
22582
f315da9400fb
removed obsolete scanwords (see obsolete tactic.ML:rename_tac for its only use);
wenzelm
parents:
22567
diff
changeset
|
764 |
fun untab pos [] ys = rev ys |
22256 | 765 |
| untab pos ("\n" :: xs) ys = untab 0 xs ("\n" :: ys) |
766 |
| untab pos ("\t" :: xs) ys = |
|
22582
f315da9400fb
removed obsolete scanwords (see obsolete tactic.ML:rename_tac for its only use);
wenzelm
parents:
22567
diff
changeset
|
767 |
let val d = tab_width - (pos mod tab_width) |
f315da9400fb
removed obsolete scanwords (see obsolete tactic.ML:rename_tac for its only use);
wenzelm
parents:
22567
diff
changeset
|
768 |
in untab (pos + d) xs (replicate d " " @ ys) end |
22256 | 769 |
| untab pos (c :: xs) ys = untab (pos + 1) xs (c :: ys); |
7712 | 770 |
in |
19301 | 771 |
if not (exists (fn c => c = "\t") chs) then chs |
22256 | 772 |
else untab 0 chs [] |
7712 | 773 |
end; |
774 |
||
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
775 |
fun prefix prfx s = prfx ^ s; |
16188 | 776 |
fun suffix sffx s = s ^ sffx; |
5285 | 777 |
|
18681
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
778 |
fun unprefix prfx s = |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
779 |
if String.isPrefix prfx s then String.substring (s, size prfx, size s - size prfx) |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
780 |
else raise Fail "unprefix"; |
3020496cff28
added exception ERROR, error, cat_error, sys_error, assert, deny, assert_all;
wenzelm
parents:
18549
diff
changeset
|
781 |
|
16188 | 782 |
fun unsuffix sffx s = |
17061 | 783 |
if String.isSuffix sffx s then String.substring (s, 0, size s - size sffx) |
784 |
else raise Fail "unsuffix"; |
|
5285 | 785 |
|
10951 | 786 |
fun replicate_string 0 _ = "" |
787 |
| replicate_string 1 a = a |
|
788 |
| replicate_string k a = |
|
789 |
if k mod 2 = 0 then replicate_string (k div 2) (a ^ a) |
|
790 |
else replicate_string (k div 2) (a ^ a) ^ a; |
|
791 |
||
233 | 792 |
|
23220 | 793 |
|
16492 | 794 |
(** lists as sets -- see also Pure/General/ord_list.ML **) |
233 | 795 |
|
18923 | 796 |
(*canonical member, insert, remove*) |
797 |
fun member eq list x = |
|
798 |
let |
|
799 |
fun memb [] = false |
|
800 |
| memb (y :: ys) = eq (x, y) orelse memb ys; |
|
801 |
in memb list end; |
|
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
802 |
|
18923 | 803 |
fun insert eq x xs = if member eq xs x then xs else x :: xs; |
804 |
fun remove eq x xs = if member eq xs x then filter_out (fn y => eq (x, y)) xs else xs; |
|
233 | 805 |
|
19301 | 806 |
fun subtract eq = fold (remove eq); |
807 |
||
18923 | 808 |
fun merge _ ([], ys) = ys |
809 |
| merge eq (xs, ys) = fold_rev (insert eq) ys xs; |
|
0 | 810 |
|
18923 | 811 |
(*old-style infixes*) |
812 |
fun x mem xs = member (op =) xs x; |
|
813 |
fun (x: int) mem_int xs = member (op =) xs x; |
|
814 |
fun (x: string) mem_string xs = member (op =) xs x; |
|
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
815 |
|
233 | 816 |
|
817 |
(*union of sets represented as lists: no repetitions*) |
|
818 |
fun xs union [] = xs |
|
819 |
| [] union ys = ys |
|
20854 | 820 |
| (x :: xs) union ys = xs union (insert (op =) x ys); |
0 | 821 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
822 |
(*union of sets, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
823 |
fun (xs:int list) union_int [] = xs |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
824 |
| [] union_int ys = ys |
20854 | 825 |
| (x :: xs) union_int ys = xs union_int (insert (op =) x ys); |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
826 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
827 |
(*union of sets, optimized version for strings*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
828 |
fun (xs:string list) union_string [] = xs |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
829 |
| [] union_string ys = ys |
20854 | 830 |
| (x :: xs) union_string ys = xs union_string (insert (op =) x ys); |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
831 |
|
0 | 832 |
(*generalized union*) |
233 | 833 |
fun gen_union eq (xs, []) = xs |
834 |
| gen_union eq ([], ys) = ys |
|
18923 | 835 |
| gen_union eq (x :: xs, ys) = gen_union eq (xs, insert eq x ys); |
233 | 836 |
|
837 |
||
838 |
(*intersection*) |
|
839 |
fun [] inter ys = [] |
|
840 |
| (x :: xs) inter ys = |
|
841 |
if x mem ys then x :: (xs inter ys) else xs inter ys; |
|
842 |
||
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
843 |
(*intersection, optimized version for ints*) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
844 |
fun ([]:int list) inter_int ys = [] |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
845 |
| (x :: xs) inter_int ys = |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
846 |
if x mem_int ys then x :: (xs inter_int ys) else xs inter_int ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
847 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
848 |
(*intersection, optimized version for strings *) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
849 |
fun ([]:string list) inter_string ys = [] |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
850 |
| (x :: xs) inter_string ys = |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
851 |
if x mem_string ys then x :: (xs inter_string ys) else xs inter_string ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
852 |
|
7090 | 853 |
(*generalized intersection*) |
854 |
fun gen_inter eq ([], ys) = [] |
|
12284 | 855 |
| gen_inter eq (x::xs, ys) = |
18923 | 856 |
if member eq ys x then x :: gen_inter eq (xs, ys) |
857 |
else gen_inter eq (xs, ys); |
|
7090 | 858 |
|
233 | 859 |
|
860 |
(*subset*) |
|
861 |
fun [] subset ys = true |
|
862 |
| (x :: xs) subset ys = x mem ys andalso xs subset ys; |
|
863 |
||
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
864 |
(*subset, optimized version for ints*) |
16439 | 865 |
fun ([]: int list) subset_int ys = true |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
866 |
| (x :: xs) subset_int ys = x mem_int ys andalso xs subset_int ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
867 |
|
2175
21fde76bc742
Updated syntax; shortened comments; put in monomorphic versions of ins
paulson
parents:
2157
diff
changeset
|
868 |
(*subset, optimized version for strings*) |
16439 | 869 |
fun ([]: string list) subset_string ys = true |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
870 |
| (x :: xs) subset_string ys = x mem_string ys andalso xs subset_string ys; |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
871 |
|
4363 | 872 |
(*set equality*) |
873 |
fun eq_set (xs, ys) = |
|
874 |
xs = ys orelse (xs subset ys andalso ys subset xs); |
|
875 |
||
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2175
diff
changeset
|
876 |
(*set equality for strings*) |
16439 | 877 |
fun eq_set_string ((xs: string list), ys) = |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
878 |
xs = ys orelse (xs subset_string ys andalso ys subset_string xs); |
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1460
diff
changeset
|
879 |
|
18923 | 880 |
fun gen_subset eq (xs, ys) = forall (member eq ys) xs; |
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2175
diff
changeset
|
881 |
|
19301 | 882 |
fun gen_eq_set eq (xs, ys) = |
20348 | 883 |
eq_list eq (xs, ys) orelse |
19301 | 884 |
(gen_subset eq (xs, ys) andalso gen_subset (eq o swap) (ys, xs)); |
885 |
||
265 | 886 |
|
233 | 887 |
(*removing an element from a list WITHOUT duplicates*) |
888 |
fun (y :: ys) \ x = if x = y then ys else y :: (ys \ x) |
|
889 |
| [] \ x = []; |
|
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
890 |
fun ys \\ xs = foldl (op \) (ys,xs); |
0 | 891 |
|
233 | 892 |
|
893 |
(*makes a list of the distinct members of the input; preserves order, takes |
|
894 |
first of equal elements*) |
|
19046
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19011
diff
changeset
|
895 |
fun distinct eq lst = |
233 | 896 |
let |
897 |
fun dist (rev_seen, []) = rev rev_seen |
|
898 |
| dist (rev_seen, x :: xs) = |
|
18923 | 899 |
if member eq rev_seen x then dist (rev_seen, xs) |
233 | 900 |
else dist (x :: rev_seen, xs); |
19046
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19011
diff
changeset
|
901 |
in dist ([], lst) end; |
233 | 902 |
|
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
903 |
(*returns a list containing all repeated elements exactly once; preserves |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
904 |
order, takes first of equal elements*) |
18966 | 905 |
fun duplicates eq lst = |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
906 |
let |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
907 |
fun dups (rev_dups, []) = rev rev_dups |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
908 |
| dups (rev_dups, x :: xs) = |
18923 | 909 |
if member eq rev_dups x orelse not (member eq xs x) then |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
910 |
dups (rev_dups, xs) |
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
911 |
else dups (x :: rev_dups, xs); |
18966 | 912 |
in dups ([], lst) end; |
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
913 |
|
16878 | 914 |
fun has_duplicates eq = |
915 |
let |
|
916 |
fun dups [] = false |
|
917 |
| dups (x :: xs) = member eq xs x orelse dups xs; |
|
918 |
in dups end; |
|
919 |
||
255
ee132db91681
added if_none, parents, commas, gen_duplicates, duplicates, assoc2;
wenzelm
parents:
245
diff
changeset
|
920 |
|
23220 | 921 |
|
22142 | 922 |
(** lists as multisets **) |
923 |
||
924 |
fun remove1 _ _ [] = raise Empty |
|
23220 | 925 |
| remove1 eq y (x::xs) = if eq (y, x) then xs else x :: remove1 eq y xs; |
22142 | 926 |
|
23220 | 927 |
fun submultiset _ ([], _) = true |
928 |
| submultiset eq (x :: xs, ys) = member eq ys x andalso submultiset eq (xs, remove1 eq x ys); |
|
233 | 929 |
|
0 | 930 |
|
931 |
||
233 | 932 |
(** balanced trees **) |
933 |
||
934 |
exception Balance; (*indicates non-positive argument to balancing fun*) |
|
935 |
||
936 |
(*balanced folding; avoids deep nesting*) |
|
937 |
fun fold_bal f [x] = x |
|
938 |
| fold_bal f [] = raise Balance |
|
939 |
| fold_bal f xs = |
|
19474 | 940 |
let val (ps, qs) = chop (length xs div 2) xs |
13629 | 941 |
in f (fold_bal f ps, fold_bal f qs) end; |
233 | 942 |
|
943 |
(*construct something of the form f(...g(...(x)...)) for balanced access*) |
|
944 |
fun access_bal (f, g, x) n i = |
|
945 |
let fun acc n i = (*1<=i<=n*) |
|
946 |
if n=1 then x else |
|
947 |
let val n2 = n div 2 |
|
948 |
in if i<=n2 then f (acc n2 i) |
|
949 |
else g (acc (n-n2) (i-n2)) |
|
950 |
end |
|
951 |
in if 1<=i andalso i<=n then acc n i else raise Balance end; |
|
952 |
||
953 |
(*construct ALL such accesses; could try harder to share recursive calls!*) |
|
954 |
fun accesses_bal (f, g, x) n = |
|
955 |
let fun acc n = |
|
956 |
if n=1 then [x] else |
|
957 |
let val n2 = n div 2 |
|
958 |
val acc2 = acc n2 |
|
959 |
in if n-n2=n2 then map f acc2 @ map g acc2 |
|
960 |
else map f acc2 @ map g (acc (n-n2)) end |
|
961 |
in if 1<=n then acc n else raise Balance end; |
|
962 |
||
963 |
||
964 |
||
2506 | 965 |
(** orders **) |
966 |
||
18966 | 967 |
fun is_equal EQUAL = true |
968 |
| is_equal _ = false; |
|
969 |
||
4445 | 970 |
fun rev_order LESS = GREATER |
971 |
| rev_order EQUAL = EQUAL |
|
972 |
| rev_order GREATER = LESS; |
|
973 |
||
4479 | 974 |
(*assume rel is a linear strict order*) |
4445 | 975 |
fun make_ord rel (x, y) = |
976 |
if rel (x, y) then LESS |
|
977 |
else if rel (y, x) then GREATER |
|
978 |
else EQUAL; |
|
979 |
||
15051
0dbbab9f77fe
int_ord = Int.compare, string_ord = String.compare;
wenzelm
parents:
15035
diff
changeset
|
980 |
val int_ord = Int.compare; |
0dbbab9f77fe
int_ord = Int.compare, string_ord = String.compare;
wenzelm
parents:
15035
diff
changeset
|
981 |
val string_ord = String.compare; |
2506 | 982 |
|
16676 | 983 |
fun fast_string_ord (s1, s2) = |
984 |
(case int_ord (size s1, size s2) of EQUAL => string_ord (s1, s2) | ord => ord); |
|
985 |
||
16492 | 986 |
fun option_ord ord (SOME x, SOME y) = ord (x, y) |
987 |
| option_ord _ (NONE, NONE) = EQUAL |
|
988 |
| option_ord _ (NONE, SOME _) = LESS |
|
989 |
| option_ord _ (SOME _, NONE) = GREATER; |
|
990 |
||
4343 | 991 |
(*lexicographic product*) |
992 |
fun prod_ord a_ord b_ord ((x, y), (x', y')) = |
|
993 |
(case a_ord (x, x') of EQUAL => b_ord (y, y') | ord => ord); |
|
994 |
||
995 |
(*dictionary order -- in general NOT well-founded!*) |
|
16984 | 996 |
fun dict_ord elem_ord (x :: xs, y :: ys) = |
997 |
(case elem_ord (x, y) of EQUAL => dict_ord elem_ord (xs, ys) | ord => ord) |
|
998 |
| dict_ord _ ([], []) = EQUAL |
|
4343 | 999 |
| dict_ord _ ([], _ :: _) = LESS |
16984 | 1000 |
| dict_ord _ (_ :: _, []) = GREATER; |
4343 | 1001 |
|
1002 |
(*lexicographic product of lists*) |
|
1003 |
fun list_ord elem_ord (xs, ys) = |
|
16676 | 1004 |
(case int_ord (length xs, length ys) of EQUAL => dict_ord elem_ord (xs, ys) | ord => ord); |
4343 | 1005 |
|
2506 | 1006 |
|
4621 | 1007 |
(* sorting *) |
1008 |
||
18427 | 1009 |
(*quicksort -- stable, i.e. does not reorder equal elements*) |
1010 |
fun quicksort unique ord = |
|
4621 | 1011 |
let |
16878 | 1012 |
fun qsort [] = [] |
1013 |
| qsort (xs as [_]) = xs |
|
18427 | 1014 |
| qsort (xs as [x, y]) = |
1015 |
(case ord (x, y) of |
|
1016 |
LESS => xs |
|
1017 |
| EQUAL => if unique then [x] else xs |
|
1018 |
| GREATER => [y, x]) |
|
16878 | 1019 |
| qsort xs = |
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
1020 |
let val (lts, eqs, gts) = part (nth xs (length xs div 2)) xs |
16878 | 1021 |
in qsort lts @ eqs @ qsort gts end |
4621 | 1022 |
and part _ [] = ([], [], []) |
1023 |
| part pivot (x :: xs) = add (ord (x, pivot)) x (part pivot xs) |
|
1024 |
and add LESS x (lts, eqs, gts) = (x :: lts, eqs, gts) |
|
18427 | 1025 |
| add EQUAL x (lts, [], gts) = (lts, [x], gts) |
1026 |
| add EQUAL x (res as (lts, eqs, gts)) = if unique then res else (lts, x :: eqs, gts) |
|
4621 | 1027 |
| add GREATER x (lts, eqs, gts) = (lts, eqs, x :: gts); |
1028 |
in qsort end; |
|
1029 |
||
18427 | 1030 |
fun sort ord = quicksort false ord; |
1031 |
fun sort_distinct ord = quicksort true ord; |
|
1032 |
||
4621 | 1033 |
val sort_strings = sort string_ord; |
1034 |
fun sort_wrt sel xs = sort (string_ord o pairself sel) xs; |
|
1035 |
||
1036 |
||
2506 | 1037 |
|
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1038 |
(** random numbers **) |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1039 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1040 |
exception RANDOM; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1041 |
|
14618
068bb99f3ebd
Fixed bug in rmod that caused an overflow exception in SML/NJ.
berghofe
parents:
14472
diff
changeset
|
1042 |
fun rmod x y = x - y * Real.realFloor (x / y); |
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1043 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1044 |
local |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1045 |
val a = 16807.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1046 |
val m = 2147483647.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1047 |
val random_seed = ref 1.0; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1048 |
in |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1049 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1050 |
fun random () = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1051 |
let val r = rmod (a * !random_seed) m |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1052 |
in (random_seed := r; r) end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1053 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1054 |
end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1055 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1056 |
fun random_range l h = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1057 |
if h < l orelse l < 0 then raise RANDOM |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1058 |
else l + Real.floor (rmod (random ()) (real (h - l + 1))); |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1059 |
|
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17952
diff
changeset
|
1060 |
fun one_of xs = nth xs (random_range 0 (length xs - 1)); |
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1061 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1062 |
fun frequency xs = |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1063 |
let |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1064 |
val sum = foldl op + (0, map fst xs); |
17756 | 1065 |
fun pick n ((k: int, x) :: xs) = |
14106
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1066 |
if n <= k then x else pick (n - k) xs |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1067 |
in pick (random_range 1 sum) xs end; |
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1068 |
|
bbf708a7e27f
Added several functions for producing random numbers.
berghofe
parents:
13794
diff
changeset
|
1069 |
|
23220 | 1070 |
|
14826
48cfe0fe53e2
output channels and diagnostics moved to General/output.ML; added read_int etc. from term.ML; removed obsolete mtree; type rat uses exception RAT;
wenzelm
parents:
14797
diff
changeset
|
1071 |
(** current directory **) |
233 | 1072 |
|
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
1073 |
val cd = OS.FileSys.chDir; |
2317 | 1074 |
val pwd = OS.FileSys.getDir; |
2243
3ebeaaacfbd1
Eta-expanded some declarations that are illegal under value polymorphism
paulson
parents:
2196
diff
changeset
|
1075 |
|
3606 | 1076 |
|
19644
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
1077 |
|
4621 | 1078 |
(** misc **) |
233 | 1079 |
|
19644
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
1080 |
fun divide_and_conquer decomp x = |
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
1081 |
let val (ys, recomb) = decomp x |
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
1082 |
in recomb (map (divide_and_conquer decomp) ys) end; |
0b01436e1843
added divide_and_conquer combinator (by Amine Chaieb);
wenzelm
parents:
19596
diff
changeset
|
1083 |
|
0 | 1084 |
|
233 | 1085 |
(*Partition a list into buckets [ bi, b(i+1), ..., bj ] |
0 | 1086 |
putting x in bk if p(k)(x) holds. Preserve order of elements if possible.*) |
1087 |
fun partition_list p i j = |
|
233 | 1088 |
let fun part k xs = |
1089 |
if k>j then |
|
0 | 1090 |
(case xs of [] => [] |
15570 | 1091 |
| _ => raise Fail "partition_list") |
0 | 1092 |
else |
19691 | 1093 |
let val (ns, rest) = List.partition (p k) xs; |
233 | 1094 |
in ns :: part(k+1)rest end |
0 | 1095 |
in part i end; |
1096 |
||
19691 | 1097 |
fun partition_eq (eq:'a * 'a -> bool) = |
1098 |
let |
|
1099 |
fun part [] = [] |
|
1100 |
| part (x :: ys) = |
|
1101 |
let val (xs, xs') = List.partition (fn y => eq (x, y)) ys |
|
1102 |
in (x::xs)::(part xs') end |
|
1103 |
in part end; |
|
1104 |
||
1105 |
||
0 | 1106 |
|
233 | 1107 |
(* generating identifiers *) |
0 | 1108 |
|
4063 | 1109 |
(** Freshly generated identifiers; supplied prefix MUST start with a letter **) |
22369 | 1110 |
local |
1111 |
(*Maps 0-61 to A-Z, a-z, 0-9; exclude _ or ' to avoid clash with internal/unusual indentifiers*) |
|
22582
f315da9400fb
removed obsolete scanwords (see obsolete tactic.ML:rename_tac for its only use);
wenzelm
parents:
22567
diff
changeset
|
1112 |
fun gensym_char i = |
22368
0e0fe77d4768
gensym no longer includes ' or _ in names (trailing _ is bad)
paulson
parents:
22256
diff
changeset
|
1113 |
if i<26 then chr (ord "A" + i) |
0e0fe77d4768
gensym no longer includes ' or _ in names (trailing _ is bad)
paulson
parents:
22256
diff
changeset
|
1114 |
else if i<52 then chr (ord "a" + i - 26) |
22369 | 1115 |
else chr (ord "0" + i - 52); |
4063 | 1116 |
|
22369 | 1117 |
val char_vec = Vector.tabulate (62, gensym_char); |
1118 |
fun newid n = implode (map (fn i => Vector.sub (char_vec, i)) (radixpand (62, n))); |
|
4284 | 1119 |
|
22368
0e0fe77d4768
gensym no longer includes ' or _ in names (trailing _ is bad)
paulson
parents:
22256
diff
changeset
|
1120 |
val gensym_seed = ref 0; |
2003 | 1121 |
|
22369 | 1122 |
in |
1123 |
fun gensym pre = pre ^ newid (inc gensym_seed); |
|
1124 |
end; |
|
4063 | 1125 |
|
1126 |
||
16439 | 1127 |
(* stamps and serial numbers *) |
1128 |
||
1129 |
type stamp = unit ref; |
|
1130 |
val stamp: unit -> stamp = ref; |
|
1131 |
||
1132 |
type serial = int; |
|
1133 |
local val count = ref 0 |
|
1134 |
in fun serial () = inc count end; |
|
1135 |
||
19512 | 1136 |
val serial_string = string_of_int o serial; |
1137 |
||
16535
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1138 |
|
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1139 |
(* generic objects *) |
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1140 |
|
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1141 |
(*note that the builtin exception datatype may be extended by new |
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1142 |
constructors at any time*) |
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1143 |
structure Object = struct type T = exn end; |
86c9eada525b
added structure Object (from Pure/General/object.ML);
wenzelm
parents:
16492
diff
changeset
|
1144 |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
1145 |
end; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1290
diff
changeset
|
1146 |
|
15745 | 1147 |
structure BasicLibrary: BASIC_LIBRARY = Library; |
1148 |
open BasicLibrary; |