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