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