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