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