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