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