author | wenzelm |
Tue, 28 Mar 2023 22:43:05 +0200 | |
changeset 77736 | 570f1436fe0a |
parent 77735 | be3f838b3e17 |
child 77737 | 81d553e9428d |
permissions | -rw-r--r-- |
6118 | 1 |
(* Title: Pure/General/table.ML |
15014 | 2 |
Author: Markus Wenzel and Stefan Berghofer, TU Muenchen |
5015 | 3 |
|
16342 | 4 |
Generic tables. Efficient purely functional implementation using |
5 |
balanced 2-3 trees. |
|
5015 | 6 |
*) |
7 |
||
8 |
signature KEY = |
|
9 |
sig |
|
10 |
type key |
|
70586 | 11 |
val ord: key ord |
5015 | 12 |
end; |
13 |
||
14 |
signature TABLE = |
|
15 |
sig |
|
77731 | 16 |
structure Key: KEY |
5015 | 17 |
type key |
18 |
type 'a table |
|
19 |
exception DUP of key |
|
19031 | 20 |
exception SAME |
15014 | 21 |
exception UNDEF of key |
5015 | 22 |
val empty: 'a table |
74232 | 23 |
val build: ('a table -> 'a table) -> 'a table |
5015 | 24 |
val is_empty: 'a table -> bool |
67537 | 25 |
val is_single: 'a table -> bool |
39020 | 26 |
val map: (key -> 'a -> 'b) -> 'a table -> 'b table |
16446 | 27 |
val fold: (key * 'b -> 'a -> 'a) -> 'b table -> 'a -> 'a |
28334 | 28 |
val fold_rev: (key * 'b -> 'a -> 'a) -> 'b table -> 'a -> 'a |
5015 | 29 |
val dest: 'a table -> (key * 'a) list |
5681 | 30 |
val keys: 'a table -> key list |
52049 | 31 |
val min: 'a table -> (key * 'a) option |
32 |
val max: 'a table -> (key * 'a) option |
|
27508 | 33 |
val exists: (key * 'a -> bool) -> 'a table -> bool |
34 |
val forall: (key * 'a -> bool) -> 'a table -> bool |
|
74227 | 35 |
val get_first: (key * 'a -> 'b option) -> 'a table -> 'b option |
43792
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
wenzelm
parents:
39020
diff
changeset
|
36 |
val lookup_key: 'a table -> key -> (key * 'a) option |
31616 | 37 |
val lookup: 'a table -> key -> 'a option |
16887 | 38 |
val defined: 'a table -> key -> bool |
31209 | 39 |
val update: key * 'a -> 'a table -> 'a table |
40 |
val update_new: key * 'a -> 'a table -> 'a table (*exception DUP*) |
|
17179 | 41 |
val default: key * 'a -> 'a table -> 'a table |
56051 | 42 |
val map_entry: key -> ('a -> 'a) (*exception SAME*) -> 'a table -> 'a table |
31209 | 43 |
val map_default: key * 'a -> ('a -> 'a) -> 'a table -> 'a table |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
44 |
val make: (key * 'a) list -> 'a table (*exception DUP*) |
56051 | 45 |
val join: (key -> 'a * 'a -> 'a) (*exception SAME*) -> |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
46 |
'a table * 'a table -> 'a table (*exception DUP*) |
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
47 |
val merge: ('a * 'a -> bool) -> 'a table * 'a table -> 'a table (*exception DUP*) |
15665 | 48 |
val delete: key -> 'a table -> 'a table (*exception UNDEF*) |
15761 | 49 |
val delete_safe: key -> 'a table -> 'a table |
16466 | 50 |
val member: ('b * 'a -> bool) -> 'a table -> key * 'b -> bool |
15761 | 51 |
val insert: ('a * 'a -> bool) -> key * 'a -> 'a table -> 'a table (*exception DUP*) |
16139 | 52 |
val remove: ('b * 'a -> bool) -> key * 'b -> 'a table -> 'a table |
18946 | 53 |
val lookup_list: 'a list table -> key -> 'a list |
31209 | 54 |
val cons_list: key * 'a -> 'a list table -> 'a list table |
19506 | 55 |
val insert_list: ('a * 'a -> bool) -> key * 'a -> 'a list table -> 'a list table |
18946 | 56 |
val remove_list: ('b * 'a -> bool) -> key * 'b -> 'a list table -> 'a list table |
25391 | 57 |
val update_list: ('a * 'a -> bool) -> key * 'a -> 'a list table -> 'a list table |
18946 | 58 |
val make_list: (key * 'a) list -> 'a list table |
59 |
val dest_list: 'a list table -> (key * 'a) list |
|
33162 | 60 |
val merge_list: ('a * 'a -> bool) -> 'a list table * 'a list table -> 'a list table |
50234 | 61 |
type set = unit table |
63511 | 62 |
val insert_set: key -> set -> set |
67529 | 63 |
val remove_set: key -> set -> set |
59012
f4e9bd04e1d5
clarified Table.make_set: duplicate arguments are allowed, like Table.make_list or Scala Set() formation;
wenzelm
parents:
56051
diff
changeset
|
64 |
val make_set: key list -> set |
5015 | 65 |
end; |
66 |
||
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
67 |
functor Table(Key: KEY): TABLE = |
5015 | 68 |
struct |
69 |
||
77733 | 70 |
(* keys *) |
71 |
||
77731 | 72 |
structure Key = Key; |
73 |
type key = Key.key; |
|
5015 | 74 |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
75 |
val eq_key = is_equal o Key.ord; |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
76 |
|
77733 | 77 |
exception DUP of key; |
78 |
||
5015 | 79 |
|
77731 | 80 |
(* datatype *) |
5015 | 81 |
|
82 |
datatype 'a table = |
|
83 |
Empty | |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
84 |
Leaf1 of key * 'a | |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
85 |
Leaf2 of (key * 'a) * (key * 'a) | |
5015 | 86 |
Branch2 of 'a table * (key * 'a) * 'a table | |
87 |
Branch3 of 'a table * (key * 'a) * 'a table * (key * 'a) * 'a table; |
|
88 |
||
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
89 |
fun make2 (Empty, e, Empty) = Leaf1 e |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
90 |
| make2 arg = Branch2 arg; |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
91 |
|
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
92 |
fun make3 (Empty, e1, Empty, e2, Empty) = Leaf2 (e1, e2) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
93 |
| make3 arg = Branch3 arg; |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
94 |
|
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
95 |
fun unmake (Leaf1 e) = Branch2 (Empty, e, Empty) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
96 |
| unmake (Leaf2 (e1, e2)) = Branch3 (Empty, e1, Empty, e2, Empty) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
97 |
| unmake arg = arg; |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
98 |
|
5015 | 99 |
|
67537 | 100 |
(* empty and single *) |
5681 | 101 |
|
5015 | 102 |
val empty = Empty; |
103 |
||
74232 | 104 |
fun build (f: 'a table -> 'a table) = f empty; |
105 |
||
5015 | 106 |
fun is_empty Empty = true |
107 |
| is_empty _ = false; |
|
108 |
||
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
109 |
fun is_single (Leaf1 _) = true |
67537 | 110 |
| is_single _ = false; |
111 |
||
5681 | 112 |
|
113 |
(* map and fold combinators *) |
|
114 |
||
16657 | 115 |
fun map_table f = |
116 |
let |
|
117 |
fun map Empty = Empty |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
118 |
| map (Leaf1 (k, x)) = Leaf1 (k, f k x) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
119 |
| map (Leaf2 ((k1, x1), (k2, x2))) = Leaf2 ((k1, f k1 x1), (k2, f k2 x2)) |
16657 | 120 |
| map (Branch2 (left, (k, x), right)) = |
121 |
Branch2 (map left, (k, f k x), map right) |
|
122 |
| map (Branch3 (left, (k1, x1), mid, (k2, x2), right)) = |
|
123 |
Branch3 (map left, (k1, f k1 x1), map mid, (k2, f k2 x2), map right); |
|
124 |
in map end; |
|
5681 | 125 |
|
16657 | 126 |
fun fold_table f = |
127 |
let |
|
128 |
fun fold Empty x = x |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
129 |
| fold (Leaf1 e) x = f e x |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
130 |
| fold (Leaf2 (e1, e2)) x = f e2 (f e1 x) |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
131 |
| fold (Branch2 (left, e, right)) x = |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
132 |
fold right (f e (fold left x)) |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
133 |
| fold (Branch3 (left, e1, mid, e2, right)) x = |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
134 |
fold right (f e2 (fold mid (f e1 (fold left x)))); |
16657 | 135 |
in fold end; |
5681 | 136 |
|
28334 | 137 |
fun fold_rev_table f = |
138 |
let |
|
77732 | 139 |
fun fold_rev Empty x = x |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
140 |
| fold_rev (Leaf1 e) x = f e x |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
141 |
| fold_rev (Leaf2 (e1, e2)) x = f e1 (f e2 x) |
77732 | 142 |
| fold_rev (Branch2 (left, e, right)) x = |
143 |
fold_rev left (f e (fold_rev right x)) |
|
144 |
| fold_rev (Branch3 (left, e1, mid, e2, right)) x = |
|
145 |
fold_rev left (f e1 (fold_rev mid (f e2 (fold_rev right x)))); |
|
146 |
in fold_rev end; |
|
28334 | 147 |
|
148 |
fun dest tab = fold_rev_table cons tab []; |
|
149 |
fun keys tab = fold_rev_table (cons o #1) tab []; |
|
16192 | 150 |
|
27508 | 151 |
|
52049 | 152 |
(* min/max entries *) |
5015 | 153 |
|
52049 | 154 |
fun min Empty = NONE |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
155 |
| min (Leaf1 e) = SOME e |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
156 |
| min (Leaf2 (e, _)) = SOME e |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
157 |
| min (Branch2 (Empty, e, _)) = SOME e |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
158 |
| min (Branch3 (Empty, e, _, _, _)) = SOME e |
52049 | 159 |
| min (Branch2 (left, _, _)) = min left |
160 |
| min (Branch3 (left, _, _, _, _)) = min left; |
|
8409 | 161 |
|
52049 | 162 |
fun max Empty = NONE |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
163 |
| max (Leaf1 e) = SOME e |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
164 |
| max (Leaf2 (_, e)) = SOME e |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
165 |
| max (Branch2 (_, e, Empty)) = SOME e |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
166 |
| max (Branch3 (_, _, _, e, Empty)) = SOME e |
52049 | 167 |
| max (Branch2 (_, _, right)) = max right |
168 |
| max (Branch3 (_, _, _, _, right)) = max right; |
|
15665 | 169 |
|
5015 | 170 |
|
74227 | 171 |
(* exists and forall *) |
172 |
||
173 |
fun exists pred = |
|
174 |
let |
|
175 |
fun ex Empty = false |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
176 |
| ex (Leaf1 e) = pred e |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
177 |
| ex (Leaf2 (e1, e2)) = pred e1 orelse pred e2 |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
178 |
| ex (Branch2 (left, e, right)) = |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
179 |
ex left orelse pred e orelse ex right |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
180 |
| ex (Branch3 (left, e1, mid, e2, right)) = |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
181 |
ex left orelse pred e1 orelse ex mid orelse pred e2 orelse ex right; |
74227 | 182 |
in ex end; |
183 |
||
184 |
fun forall pred = not o exists (not o pred); |
|
185 |
||
186 |
||
31616 | 187 |
(* get_first *) |
188 |
||
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
189 |
fun get_first f = |
31616 | 190 |
let |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
191 |
fun get Empty = NONE |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
192 |
| get (Leaf1 e) = f e |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
193 |
| get (Leaf2 (e1, e2)) = |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
194 |
(case f e1 of |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
195 |
NONE => f e2 |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
196 |
| some => some) |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
197 |
| get (Branch2 (left, e, right)) = |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
198 |
(case get left of |
31616 | 199 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
200 |
(case f e of |
31616 | 201 |
NONE => get right |
202 |
| some => some) |
|
203 |
| some => some) |
|
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
204 |
| get (Branch3 (left, e1, mid, e2, right)) = |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
205 |
(case get left of |
31616 | 206 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
207 |
(case f e1 of |
31616 | 208 |
NONE => |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
209 |
(case get mid of |
31616 | 210 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
211 |
(case f e2 of |
31616 | 212 |
NONE => get right |
213 |
| some => some) |
|
214 |
| some => some) |
|
215 |
| some => some) |
|
216 |
| some => some); |
|
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
217 |
in get end; |
31616 | 218 |
|
219 |
||
5015 | 220 |
(* lookup *) |
221 |
||
67557 | 222 |
fun lookup tab key = |
223 |
let |
|
224 |
fun look Empty = NONE |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
225 |
| look (Leaf1 (k, x)) = |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
226 |
if eq_key (key, k) then SOME x else NONE |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
227 |
| look (Leaf2 ((k1, x1), (k2, x2))) = |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
228 |
if eq_key (key, k1) then SOME x1 else |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
229 |
if eq_key (key, k2) then SOME x2 else NONE |
67557 | 230 |
| look (Branch2 (left, (k, x), right)) = |
231 |
(case Key.ord (key, k) of |
|
232 |
LESS => look left |
|
233 |
| EQUAL => SOME x |
|
234 |
| GREATER => look right) |
|
235 |
| look (Branch3 (left, (k1, x1), mid, (k2, x2), right)) = |
|
236 |
(case Key.ord (key, k1) of |
|
237 |
LESS => look left |
|
238 |
| EQUAL => SOME x1 |
|
239 |
| GREATER => |
|
240 |
(case Key.ord (key, k2) of |
|
241 |
LESS => look mid |
|
242 |
| EQUAL => SOME x2 |
|
243 |
| GREATER => look right)); |
|
244 |
in look tab end; |
|
245 |
||
43792
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
wenzelm
parents:
39020
diff
changeset
|
246 |
fun lookup_key tab key = |
19031 | 247 |
let |
248 |
fun look Empty = NONE |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
249 |
| look (Leaf1 (k, x)) = |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
250 |
if eq_key (key, k) then SOME (k, x) else NONE |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
251 |
| look (Leaf2 ((k1, x1), (k2, x2))) = |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
252 |
if eq_key (key, k1) then SOME (k1, x1) else |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
253 |
if eq_key (key, k2) then SOME (k2, x2) else NONE |
19031 | 254 |
| look (Branch2 (left, (k, x), right)) = |
255 |
(case Key.ord (key, k) of |
|
256 |
LESS => look left |
|
43792
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
wenzelm
parents:
39020
diff
changeset
|
257 |
| EQUAL => SOME (k, x) |
19031 | 258 |
| GREATER => look right) |
259 |
| look (Branch3 (left, (k1, x1), mid, (k2, x2), right)) = |
|
260 |
(case Key.ord (key, k1) of |
|
261 |
LESS => look left |
|
43792
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
wenzelm
parents:
39020
diff
changeset
|
262 |
| EQUAL => SOME (k1, x1) |
19031 | 263 |
| GREATER => |
264 |
(case Key.ord (key, k2) of |
|
265 |
LESS => look mid |
|
43792
d5803c3d537a
Table.lookup_key and Graph.get_entry allow to retrieve the original key, which is not necessarily identical to the given one;
wenzelm
parents:
39020
diff
changeset
|
266 |
| EQUAL => SOME (k2, x2) |
19031 | 267 |
| GREATER => look right)); |
268 |
in look tab end; |
|
5015 | 269 |
|
19031 | 270 |
fun defined tab key = |
271 |
let |
|
272 |
fun def Empty = false |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
273 |
| def (Leaf1 (k, _)) = eq_key (key, k) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
274 |
| def (Leaf2 ((k1, _), (k2, _))) = eq_key (key, k1) orelse eq_key (key, k2) |
77735 | 275 |
| def (Branch2 (left, (k, _), right)) = |
19031 | 276 |
(case Key.ord (key, k) of |
277 |
LESS => def left |
|
278 |
| EQUAL => true |
|
279 |
| GREATER => def right) |
|
77735 | 280 |
| def (Branch3 (left, (k1, _), mid, (k2, _), right)) = |
19031 | 281 |
(case Key.ord (key, k1) of |
282 |
LESS => def left |
|
283 |
| EQUAL => true |
|
284 |
| GREATER => |
|
285 |
(case Key.ord (key, k2) of |
|
286 |
LESS => def mid |
|
287 |
| EQUAL => true |
|
288 |
| GREATER => def right)); |
|
289 |
in def tab end; |
|
16887 | 290 |
|
5015 | 291 |
|
19031 | 292 |
(* modify *) |
5015 | 293 |
|
294 |
datatype 'a growth = |
|
295 |
Stay of 'a table | |
|
296 |
Sprout of 'a table * (key * 'a) * 'a table; |
|
297 |
||
15761 | 298 |
exception SAME; |
299 |
||
15665 | 300 |
fun modify key f tab = |
301 |
let |
|
302 |
fun modfy Empty = Sprout (Empty, (key, f NONE), Empty) |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
303 |
| modfy (t as Leaf1 _) = modfy (unmake t) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
304 |
| modfy (t as Leaf2 _) = modfy (unmake t) |
15665 | 305 |
| modfy (Branch2 (left, p as (k, x), right)) = |
306 |
(case Key.ord (key, k) of |
|
307 |
LESS => |
|
308 |
(case modfy left of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
309 |
Stay left' => Stay (make2 (left', p, right)) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
310 |
| Sprout (left1, q, left2) => Stay (make3 (left1, q, left2, p, right))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
311 |
| EQUAL => Stay (make2 (left, (k, f (SOME x)), right)) |
15665 | 312 |
| GREATER => |
313 |
(case modfy right of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
314 |
Stay right' => Stay (make2 (left, p, right')) |
15665 | 315 |
| Sprout (right1, q, right2) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
316 |
Stay (make3 (left, p, right1, q, right2)))) |
15665 | 317 |
| modfy (Branch3 (left, p1 as (k1, x1), mid, p2 as (k2, x2), right)) = |
318 |
(case Key.ord (key, k1) of |
|
5015 | 319 |
LESS => |
15665 | 320 |
(case modfy left of |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
321 |
Stay left' => Stay (make3 (left', p1, mid, p2, right)) |
15665 | 322 |
| Sprout (left1, q, left2) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
323 |
Sprout (make2 (left1, q, left2), p1, make2 (mid, p2, right))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
324 |
| EQUAL => Stay (make3 (left, (k1, f (SOME x1)), mid, p2, right)) |
5015 | 325 |
| GREATER => |
15665 | 326 |
(case Key.ord (key, k2) of |
327 |
LESS => |
|
328 |
(case modfy mid of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
329 |
Stay mid' => Stay (make3 (left, p1, mid', p2, right)) |
15665 | 330 |
| Sprout (mid1, q, mid2) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
331 |
Sprout (make2 (left, p1, mid1), q, make2 (mid2, p2, right))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
332 |
| EQUAL => Stay (make3 (left, p1, mid, (k2, f (SOME x2)), right)) |
15665 | 333 |
| GREATER => |
334 |
(case modfy right of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
335 |
Stay right' => Stay (make3 (left, p1, mid, p2, right')) |
15665 | 336 |
| Sprout (right1, q, right2) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
337 |
Sprout (make2 (left, p1, mid), p2, make2 (right1, q, right2))))); |
5015 | 338 |
|
15665 | 339 |
in |
340 |
(case modfy tab of |
|
341 |
Stay tab' => tab' |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
342 |
| Sprout br => make2 br) |
15665 | 343 |
handle SAME => tab |
344 |
end; |
|
5015 | 345 |
|
17412 | 346 |
fun update (key, x) tab = modify key (fn _ => x) tab; |
347 |
fun update_new (key, x) tab = modify key (fn NONE => x | SOME _ => raise DUP key) tab; |
|
17709 | 348 |
fun default (key, x) tab = modify key (fn NONE => x | SOME _ => raise SAME) tab; |
15761 | 349 |
fun map_entry key f = modify key (fn NONE => raise SAME | SOME x => f x); |
27783 | 350 |
fun map_default (key, x) f = modify key (fn NONE => f x | SOME y => f y); |
5015 | 351 |
|
352 |
||
15014 | 353 |
(* delete *) |
354 |
||
15665 | 355 |
exception UNDEF of key; |
356 |
||
357 |
local |
|
358 |
||
77735 | 359 |
fun compare NONE _ = LESS |
15665 | 360 |
| compare (SOME k1) (k2, _) = Key.ord (k1, k2); |
15014 | 361 |
|
77735 | 362 |
fun if_eq ord x y = if ord = EQUAL then x else y; |
15014 | 363 |
|
15531 | 364 |
fun del (SOME k) Empty = raise UNDEF k |
77735 | 365 |
| del NONE Empty = raise Match |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
366 |
| del NONE (Leaf1 p) = (p, (true, Empty)) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
367 |
| del NONE (Leaf2 (p, q)) = (p, (false, Leaf1 q)) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
368 |
| del k (Leaf1 p) = |
77721 | 369 |
(case compare k p of |
370 |
EQUAL => (p, (true, Empty)) |
|
371 |
| _ => raise UNDEF (the k)) |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
372 |
| del k (Leaf2 (p, q)) = |
77721 | 373 |
(case compare k p of |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
374 |
EQUAL => (p, (false, Leaf1 q)) |
77721 | 375 |
| _ => |
376 |
(case compare k q of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
377 |
EQUAL => (q, (false, Leaf1 p)) |
77721 | 378 |
| _ => raise UNDEF (the k))) |
379 |
| del k (Branch2 (l, p, r)) = |
|
380 |
(case compare k p of |
|
381 |
LESS => |
|
382 |
(case del k l of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
383 |
(p', (false, l')) => (p', (false, make2 (l', p, r))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
384 |
| (p', (true, l')) => (p', case unmake r of |
77721 | 385 |
Branch2 (rl, rp, rr) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
386 |
(true, make3 (l', p, rl, rp, rr)) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
387 |
| Branch3 (rl, rp, rm, rq, rr) => (false, make2 |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
388 |
(make2 (l', p, rl), rp, make2 (rm, rq, rr))))) |
77721 | 389 |
| ord => |
390 |
(case del (if_eq ord NONE k) r of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
391 |
(p', (false, r')) => (p', (false, make2 (l, if_eq ord p' p, r'))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
392 |
| (p', (true, r')) => (p', case unmake l of |
77721 | 393 |
Branch2 (ll, lp, lr) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
394 |
(true, make3 (ll, lp, lr, if_eq ord p' p, r')) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
395 |
| Branch3 (ll, lp, lm, lq, lr) => (false, make2 |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
396 |
(make2 (ll, lp, lm), lq, make2 (lr, if_eq ord p' p, r')))))) |
77721 | 397 |
| del k (Branch3 (l, p, m, q, r)) = |
398 |
(case compare k q of |
|
399 |
LESS => |
|
400 |
(case compare k p of |
|
401 |
LESS => |
|
402 |
(case del k l of |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
403 |
(p', (false, l')) => (p', (false, make3 (l', p, m, q, r))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
404 |
| (p', (true, l')) => (p', (false, case (unmake m, unmake r) of |
77721 | 405 |
(Branch2 (ml, mp, mr), Branch2 _) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
406 |
make2 (make3 (l', p, ml, mp, mr), q, r) |
77721 | 407 |
| (Branch3 (ml, mp, mm, mq, mr), _) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
408 |
make3 (make2 (l', p, ml), mp, make2 (mm, mq, mr), q, r) |
77721 | 409 |
| (Branch2 (ml, mp, mr), Branch3 (rl, rp, rm, rq, rr)) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
410 |
make3 (make2 (l', p, ml), mp, make2 (mr, q, rl), rp, |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
411 |
make2 (rm, rq, rr))))) |
77721 | 412 |
| ord => |
413 |
(case del (if_eq ord NONE k) m of |
|
414 |
(p', (false, m')) => |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
415 |
(p', (false, make3 (l, if_eq ord p' p, m', q, r))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
416 |
| (p', (true, m')) => (p', (false, case (unmake l, unmake r) of |
77721 | 417 |
(Branch2 (ll, lp, lr), Branch2 _) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
418 |
make2 (make3 (ll, lp, lr, if_eq ord p' p, m'), q, r) |
77721 | 419 |
| (Branch3 (ll, lp, lm, lq, lr), _) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
420 |
make3 (make2 (ll, lp, lm), lq, |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
421 |
make2 (lr, if_eq ord p' p, m'), q, r) |
77721 | 422 |
| (_, Branch3 (rl, rp, rm, rq, rr)) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
423 |
make3 (l, if_eq ord p' p, make2 (m', q, rl), rp, |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
424 |
make2 (rm, rq, rr)))))) |
77721 | 425 |
| ord => |
426 |
(case del (if_eq ord NONE k) r of |
|
427 |
(q', (false, r')) => |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
428 |
(q', (false, make3 (l, p, m, if_eq ord q' q, r'))) |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
429 |
| (q', (true, r')) => (q', (false, case (unmake l, unmake m) of |
77721 | 430 |
(Branch2 _, Branch2 (ml, mp, mr)) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
431 |
make2 (l, p, make3 (ml, mp, mr, if_eq ord q' q, r')) |
77721 | 432 |
| (_, Branch3 (ml, mp, mm, mq, mr)) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
433 |
make3 (l, p, make2 (ml, mp, mm), mq, |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
434 |
make2 (mr, if_eq ord q' q, r')) |
77721 | 435 |
| (Branch3 (ll, lp, lm, lq, lr), Branch2 (ml, mp, mr)) => |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
436 |
make3 (make2 (ll, lp, lm), lq, make2 (lr, p, ml), mp, |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
437 |
make2 (mr, if_eq ord q' q, r')))))); |
15014 | 438 |
|
15665 | 439 |
in |
440 |
||
15761 | 441 |
fun delete key tab = snd (snd (del (SOME key) tab)); |
44336
59ff5a93eef4
tuned Table.delete_safe: avoid potentially expensive attempt of delete;
wenzelm
parents:
43792
diff
changeset
|
442 |
fun delete_safe key tab = if defined tab key then delete key tab else tab; |
15014 | 443 |
|
15665 | 444 |
end; |
445 |
||
15014 | 446 |
|
19031 | 447 |
(* membership operations *) |
16466 | 448 |
|
449 |
fun member eq tab (key, x) = |
|
17412 | 450 |
(case lookup tab key of |
16466 | 451 |
NONE => false |
452 |
| SOME y => eq (x, y)); |
|
15761 | 453 |
|
454 |
fun insert eq (key, x) = |
|
455 |
modify key (fn NONE => x | SOME y => if eq (x, y) then raise SAME else raise DUP key); |
|
456 |
||
457 |
fun remove eq (key, x) tab = |
|
17412 | 458 |
(case lookup tab key of |
15761 | 459 |
NONE => tab |
460 |
| SOME y => if eq (x, y) then delete key tab else tab); |
|
461 |
||
462 |
||
19031 | 463 |
(* simultaneous modifications *) |
464 |
||
74266 | 465 |
fun make entries = build (fold update_new entries); |
5015 | 466 |
|
12287 | 467 |
fun join f (table1, table2) = |
55727
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
468 |
let |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
469 |
fun add (key, y) tab = modify key (fn NONE => y | SOME x => f key (x, y)) tab; |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
470 |
in |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
471 |
if pointer_eq (table1, table2) then table1 |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
472 |
else if is_empty table1 then table2 |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
473 |
else fold_table add table2 table1 |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
474 |
end; |
12287 | 475 |
|
19031 | 476 |
fun merge eq = join (fn key => fn xy => if eq xy then raise SAME else raise DUP key); |
5015 | 477 |
|
478 |
||
19031 | 479 |
(* list tables *) |
15761 | 480 |
|
18946 | 481 |
fun lookup_list tab key = these (lookup tab key); |
25391 | 482 |
|
483 |
fun cons_list (key, x) tab = modify key (fn NONE => [x] | SOME xs => x :: xs) tab; |
|
5015 | 484 |
|
20124 | 485 |
fun insert_list eq (key, x) = |
486 |
modify key (fn NONE => [x] | SOME xs => if Library.member eq xs x then raise SAME else x :: xs); |
|
25391 | 487 |
|
18946 | 488 |
fun remove_list eq (key, x) tab = |
15761 | 489 |
map_entry key (fn xs => (case Library.remove eq x xs of [] => raise UNDEF key | ys => ys)) tab |
490 |
handle UNDEF _ => delete key tab; |
|
5015 | 491 |
|
25391 | 492 |
fun update_list eq (key, x) = |
493 |
modify key (fn NONE => [x] | SOME [] => [x] | SOME (xs as y :: _) => |
|
494 |
if eq (x, y) then raise SAME else Library.update eq x xs); |
|
495 |
||
74266 | 496 |
fun make_list args = build (fold_rev cons_list args); |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19073
diff
changeset
|
497 |
fun dest_list tab = maps (fn (key, xs) => map (pair key) xs) (dest tab); |
19031 | 498 |
fun merge_list eq = join (fn _ => Library.merge eq); |
5015 | 499 |
|
500 |
||
74227 | 501 |
(* set operations *) |
50234 | 502 |
|
503 |
type set = unit table; |
|
504 |
||
67529 | 505 |
fun insert_set x = default (x, ()); |
506 |
fun remove_set x : set -> set = delete_safe x; |
|
74266 | 507 |
fun make_set xs = build (fold insert_set xs); |
50234 | 508 |
|
509 |
||
47980
c81801f881b3
simplified Poly/ML setup -- 5.3.0 is now the common base-line;
wenzelm
parents:
44336
diff
changeset
|
510 |
(* ML pretty-printing *) |
38635
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
511 |
|
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
512 |
val _ = |
62819
d3ff367a16a0
careful export of type-dependent functions, without losing their special status;
wenzelm
parents:
62503
diff
changeset
|
513 |
ML_system_pp (fn depth => fn pretty => fn tab => |
62503 | 514 |
ML_Pretty.to_polyml |
38635
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
515 |
(ML_Pretty.enum "," "{" "}" |
62503 | 516 |
(ML_Pretty.pair |
62819
d3ff367a16a0
careful export of type-dependent functions, without losing their special status;
wenzelm
parents:
62503
diff
changeset
|
517 |
(ML_Pretty.from_polyml o ML_system_pretty) |
62503 | 518 |
(ML_Pretty.from_polyml o pretty)) |
38635
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
519 |
(dest tab, depth))); |
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
520 |
|
f76ad0771f67
added ML toplevel pretty-printing for tables, using dummy for anything other than Poly/ML 5.3.0 (or later);
wenzelm
parents:
35012
diff
changeset
|
521 |
|
5681 | 522 |
(*final declarations of this structure!*) |
39020 | 523 |
val map = map_table; |
16446 | 524 |
val fold = fold_table; |
28334 | 525 |
val fold_rev = fold_rev_table; |
5015 | 526 |
|
527 |
end; |
|
528 |
||
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
529 |
structure Inttab = Table(type key = int val ord = int_ord); |
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
530 |
structure Symtab = Table(type key = string val ord = fast_string_ord); |
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
531 |
structure Symreltab = Table(type key = string * string |
30647
ef8f46c3158a
added Symreltab (binary relations of symbols) instance of TableFun
haftmann
parents:
30290
diff
changeset
|
532 |
val ord = prod_ord fast_string_ord fast_string_ord); |