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