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