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