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