author | Fabian Huch <huch@in.tum.de> |
Thu, 18 Jul 2024 13:08:11 +0200 | |
changeset 80574 | 90493e889dff |
parent 80240 | 534c5e4f07c0 |
child 80579 | 69cf3c308d6c |
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 |
77780
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
22 |
val size: 'a table -> int |
5015 | 23 |
val empty: 'a table |
74232 | 24 |
val build: ('a table -> 'a table) -> 'a table |
5015 | 25 |
val is_empty: '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 |
79249 | 44 |
val make_distinct: (key * 'a) list -> 'a table |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
45 |
val make: (key * 'a) list -> 'a table (*exception DUP*) |
56051 | 46 |
val join: (key -> 'a * 'a -> 'a) (*exception SAME*) -> |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
47 |
'a table * 'a table -> 'a table (*exception DUP*) |
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
21065
diff
changeset
|
48 |
val merge: ('a * 'a -> bool) -> 'a table * 'a table -> 'a table (*exception DUP*) |
77822 | 49 |
val joins: (key -> 'a * 'a -> 'a) (*exception SAME*) -> |
50 |
'a table list -> 'a table (*exception DUP*) |
|
51 |
val merges: ('a * 'a -> bool) -> 'a table list -> 'a table (*exception DUP*) |
|
15665 | 52 |
val delete: key -> 'a table -> 'a table (*exception UNDEF*) |
15761 | 53 |
val delete_safe: key -> 'a table -> 'a table |
16466 | 54 |
val member: ('b * 'a -> bool) -> 'a table -> key * 'b -> bool |
15761 | 55 |
val insert: ('a * 'a -> bool) -> key * 'a -> 'a table -> 'a table (*exception DUP*) |
16139 | 56 |
val remove: ('b * 'a -> bool) -> key * 'b -> 'a table -> 'a table |
18946 | 57 |
val lookup_list: 'a list table -> key -> 'a list |
31209 | 58 |
val cons_list: key * 'a -> 'a list table -> 'a list table |
19506 | 59 |
val insert_list: ('a * 'a -> bool) -> key * 'a -> 'a list table -> 'a list table |
77981 | 60 |
val update_list: ('a * 'a -> bool) -> key * 'a -> 'a list table -> 'a list table |
18946 | 61 |
val remove_list: ('b * 'a -> bool) -> key * 'b -> 'a list table -> 'a list table |
62 |
val make_list: (key * 'a) list -> 'a list table |
|
63 |
val dest_list: 'a list table -> (key * 'a) list |
|
33162 | 64 |
val merge_list: ('a * 'a -> bool) -> 'a list table * 'a list table -> 'a list table |
50234 | 65 |
type set = unit table |
63511 | 66 |
val insert_set: key -> set -> set |
67529 | 67 |
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
|
68 |
val make_set: key list -> set |
79163 | 69 |
val unsynchronized_cache: (key -> 'a) -> key -> 'a |
5015 | 70 |
end; |
71 |
||
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
72 |
functor Table(Key: KEY): TABLE = |
5015 | 73 |
struct |
74 |
||
77733 | 75 |
(* keys *) |
76 |
||
77731 | 77 |
structure Key = Key; |
78 |
type key = Key.key; |
|
5015 | 79 |
|
77733 | 80 |
exception DUP of key; |
81 |
||
5015 | 82 |
|
77731 | 83 |
(* datatype *) |
5015 | 84 |
|
85 |
datatype 'a table = |
|
86 |
Empty | |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
87 |
Leaf1 of key * 'a | |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
88 |
Leaf2 of (key * 'a) * (key * 'a) | |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
89 |
Leaf3 of (key * 'a) * (key * 'a) * (key * 'a) | |
5015 | 90 |
Branch2 of 'a table * (key * 'a) * 'a table | |
77800 | 91 |
Branch3 of 'a table * (key * 'a) * 'a table * (key * 'a) * 'a table | |
92 |
Size of int * 'a table; |
|
5015 | 93 |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
94 |
fun make2 (Empty, e, Empty) = Leaf1 e |
77740
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
95 |
| make2 (Branch2 (Empty, e1, Empty), e2, right) = make2 (Leaf1 e1, e2, right) |
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
96 |
| make2 (left, e1, Branch2 (Empty, e2, Empty)) = make2 (left, e1, Leaf1 e2) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
97 |
| make2 (Branch3 (Empty, e1, Empty, e2, Empty), e3, right) = make2 (Leaf2 (e1, e2), e3, right) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
98 |
| make2 (left, e1, Branch3 (Empty, e2, Empty, e3, Empty)) = make2 (left, e1, Leaf2 (e2, e3)) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
99 |
| make2 (Leaf1 e1, e2, Empty) = Leaf2 (e1, e2) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
100 |
| make2 (Empty, e1, Leaf1 e2) = Leaf2 (e1, e2) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
101 |
| make2 (Leaf1 e1, e2, Leaf1 e3) = Leaf3 (e1, e2, e3) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
102 |
| make2 (Leaf2 (e1, e2), e3, Empty) = Leaf3 (e1, e2, e3) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
103 |
| make2 (Empty, e1, Leaf2 (e2, e3)) = Leaf3 (e1, e2, e3) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
104 |
| 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
|
105 |
|
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
106 |
fun make3 (Empty, e1, Empty, e2, Empty) = Leaf2 (e1, e2) |
77740
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
107 |
| make3 (Branch2 (Empty, e1, Empty), e2, mid, e3, right) = make3 (Leaf1 e1, e2, mid, e3, right) |
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
108 |
| make3 (left, e1, Branch2 (Empty, e2, Empty), e3, right) = make3 (left, e1, Leaf1 e2, e3, right) |
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
109 |
| make3 (left, e1, mid, e2, Branch2 (Empty, e3, Empty)) = make3 (left, e1, mid, e2, Leaf1 e3) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
110 |
| make3 (Leaf1 e1, e2, Empty, e3, Empty) = Leaf3 (e1, e2, e3) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
111 |
| make3 (Empty, e1, Leaf1 e2, e3, Empty) = Leaf3 (e1, e2, e3) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
112 |
| make3 (Empty, e1, Empty, e2, Leaf1 e3) = Leaf3 (e1, e2, e3) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
113 |
| 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
|
114 |
|
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
115 |
fun unmake (Leaf1 e) = Branch2 (Empty, e, Empty) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
116 |
| unmake (Leaf2 (e1, e2)) = Branch3 (Empty, e1, Empty, e2, Empty) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
117 |
| unmake (Leaf3 (e1, e2, e3)) = Branch2 (Branch2 (Empty, e1, Empty), e2, Branch2 (Empty, e3, Empty)) |
77800 | 118 |
| unmake (Size (_, arg)) = arg |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
119 |
| unmake arg = arg; |
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
120 |
|
5015 | 121 |
|
77780
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
122 |
(* size *) |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
123 |
|
77800 | 124 |
(*literal copy from set.ML*) |
77780
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
125 |
local |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
126 |
fun count Empty n = n |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
127 |
| count (Leaf1 _) n = n + 1 |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
128 |
| count (Leaf2 _) n = n + 2 |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
129 |
| count (Leaf3 _) n = n + 3 |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
130 |
| count (Branch2 (left, _, right)) n = count right (count left (n + 1)) |
77800 | 131 |
| count (Branch3 (left, _, mid, _, right)) n = count right (count mid (count left (n + 2))) |
132 |
| count (Size (m, _)) n = m + n; |
|
77802
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
133 |
|
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
134 |
fun box (Branch2 _) = 1 |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
135 |
| box (Branch3 _) = 1 |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
136 |
| box _ = 0; |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
137 |
|
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
138 |
fun bound arg b = |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
139 |
if b > 0 then |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
140 |
(case arg of |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
141 |
Branch2 (left, _, right) => |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
142 |
bound right (bound left (b - box left - box right)) |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
143 |
| Branch3 (left, _, mid, _, right) => |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
144 |
bound right (bound mid (bound left (b - box left - box mid - box right))) |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
145 |
| _ => b) |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
146 |
else b; |
77780
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
147 |
in |
77802
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
148 |
fun size arg = count arg 0; |
25c114e2528e
performance tuning: make_size accounts for boxes, i.e. pointer derefs required in "count";
wenzelm
parents:
77800
diff
changeset
|
149 |
fun make_size m arg = if bound arg 3 <= 0 then Size (m, arg) else arg; |
77780
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
150 |
end; |
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
151 |
|
97febdb6ee58
clarified signature: more uniform Table() vs. Set();
wenzelm
parents:
77768
diff
changeset
|
152 |
|
77743 | 153 |
(* empty *) |
5681 | 154 |
|
5015 | 155 |
val empty = Empty; |
156 |
||
74232 | 157 |
fun build (f: 'a table -> 'a table) = f empty; |
158 |
||
77800 | 159 |
(*literal copy from set.ML*) |
5015 | 160 |
fun is_empty Empty = true |
77800 | 161 |
| is_empty (Size (_, arg)) = is_empty arg |
5015 | 162 |
| is_empty _ = false; |
163 |
||
5681 | 164 |
|
165 |
(* map and fold combinators *) |
|
166 |
||
16657 | 167 |
fun map_table f = |
168 |
let |
|
79094 | 169 |
fun apply (k, x) = (k, f k x); |
170 |
||
16657 | 171 |
fun map Empty = Empty |
79094 | 172 |
| map (Leaf1 e) = Leaf1 (apply e) |
173 |
| map (Leaf2 (e1, e2)) = Leaf2 (apply e1, apply e2) |
|
174 |
| map (Leaf3 (e1, e2, e3)) = Leaf3 (apply e1, apply e2, apply e3) |
|
175 |
| map (Branch2 (left, e, right)) = |
|
176 |
Branch2 (map left, apply e, map right) |
|
177 |
| map (Branch3 (left, e1, mid, e2, right)) = |
|
178 |
Branch3 (map left, apply e1, map mid, apply e2, map right) |
|
77800 | 179 |
| map (Size (m, arg)) = Size (m, map arg); |
16657 | 180 |
in map end; |
5681 | 181 |
|
16657 | 182 |
fun fold_table f = |
183 |
let |
|
77813 | 184 |
fun fold Empty a = a |
185 |
| fold (Leaf1 e) a = f e a |
|
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
186 |
| fold (Leaf2 (e1, e2)) a = f e2 (f e1 a) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
187 |
| fold (Leaf3 (e1, e2, e3)) a = f e3 (f e2 (f e1 a)) |
77813 | 188 |
| fold (Branch2 (left, e, right)) a = |
189 |
fold right (f e (fold left a)) |
|
190 |
| fold (Branch3 (left, e1, mid, e2, right)) a = |
|
191 |
fold right (f e2 (fold mid (f e1 (fold left a)))) |
|
192 |
| fold (Size (_, arg)) a = fold arg a; |
|
16657 | 193 |
in fold end; |
5681 | 194 |
|
28334 | 195 |
fun fold_rev_table f = |
196 |
let |
|
77813 | 197 |
fun fold_rev Empty a = a |
198 |
| fold_rev (Leaf1 e) a = f e a |
|
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
199 |
| fold_rev (Leaf2 (e1, e2)) a = f e1 (f e2 a) |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
200 |
| fold_rev (Leaf3 (e1, e2, e3)) a = f e1 (f e2 (f e3 a)) |
77813 | 201 |
| fold_rev (Branch2 (left, e, right)) a = |
202 |
fold_rev left (f e (fold_rev right a)) |
|
203 |
| fold_rev (Branch3 (left, e1, mid, e2, right)) a = |
|
204 |
fold_rev left (f e1 (fold_rev mid (f e2 (fold_rev right a)))) |
|
205 |
| fold_rev (Size (_, arg)) a = fold_rev arg a; |
|
77732 | 206 |
in fold_rev end; |
28334 | 207 |
|
77768 | 208 |
fun dest tab = Library.build (fold_rev_table cons tab); |
209 |
fun keys tab = Library.build (fold_rev_table (cons o #1) tab); |
|
16192 | 210 |
|
27508 | 211 |
|
52049 | 212 |
(* min/max entries *) |
5015 | 213 |
|
52049 | 214 |
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
|
215 |
| min (Leaf1 e) = SOME e |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
216 |
| min (Leaf2 (e, _)) = SOME e |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
217 |
| min (Leaf3 (e, _, _)) = SOME e |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
218 |
| 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
|
219 |
| min (Branch3 (Empty, e, _, _, _)) = SOME e |
52049 | 220 |
| min (Branch2 (left, _, _)) = min left |
77800 | 221 |
| min (Branch3 (left, _, _, _, _)) = min left |
222 |
| min (Size (_, arg)) = min arg; |
|
8409 | 223 |
|
52049 | 224 |
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
|
225 |
| max (Leaf1 e) = SOME e |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
226 |
| max (Leaf2 (_, e)) = SOME e |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
227 |
| max (Leaf3 (_, _, e)) = SOME e |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
228 |
| 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
|
229 |
| max (Branch3 (_, _, _, e, Empty)) = SOME e |
52049 | 230 |
| max (Branch2 (_, _, right)) = max right |
77800 | 231 |
| max (Branch3 (_, _, _, _, right)) = max right |
232 |
| max (Size (_, arg)) = max arg; |
|
15665 | 233 |
|
5015 | 234 |
|
74227 | 235 |
(* exists and forall *) |
236 |
||
237 |
fun exists pred = |
|
238 |
let |
|
239 |
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
|
240 |
| ex (Leaf1 e) = pred e |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
241 |
| ex (Leaf2 (e1, e2)) = pred e1 orelse pred e2 |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
242 |
| ex (Leaf3 (e1, e2, e3)) = pred e1 orelse pred e2 orelse pred e3 |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
243 |
| ex (Branch2 (left, e, right)) = |
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
244 |
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
|
245 |
| ex (Branch3 (left, e1, mid, e2, right)) = |
77800 | 246 |
ex left orelse pred e1 orelse ex mid orelse pred e2 orelse ex right |
247 |
| ex (Size (_, arg)) = ex arg; |
|
74227 | 248 |
in ex end; |
249 |
||
250 |
fun forall pred = not o exists (not o pred); |
|
251 |
||
252 |
||
31616 | 253 |
(* get_first *) |
254 |
||
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
255 |
fun get_first f = |
31616 | 256 |
let |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
257 |
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
|
258 |
| get (Leaf1 e) = f e |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
259 |
| get (Leaf2 (e1, e2)) = |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
260 |
(case f e1 of |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
261 |
NONE => f e2 |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
262 |
| some => some) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
263 |
| get (Leaf3 (e1, e2, e3)) = |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
264 |
(case f e1 of |
77740
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
265 |
NONE => |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
266 |
(case f e2 of |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
267 |
NONE => f e3 |
77740
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
268 |
| some => some) |
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
269 |
| some => some) |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
270 |
| get (Branch2 (left, e, right)) = |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
271 |
(case get left of |
31616 | 272 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
273 |
(case f e of |
31616 | 274 |
NONE => get right |
275 |
| some => some) |
|
276 |
| some => some) |
|
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
277 |
| get (Branch3 (left, e1, mid, e2, right)) = |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
278 |
(case get left of |
31616 | 279 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
280 |
(case f e1 of |
31616 | 281 |
NONE => |
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
282 |
(case get mid of |
31616 | 283 |
NONE => |
77727
b98edf66ca96
tuned names: "e" means "entry" in table.ML and "elem" in set.ML;
wenzelm
parents:
77721
diff
changeset
|
284 |
(case f e2 of |
31616 | 285 |
NONE => get right |
286 |
| some => some) |
|
287 |
| some => some) |
|
288 |
| some => some) |
|
77800 | 289 |
| some => some) |
290 |
| get (Size (_, arg)) = get arg; |
|
35012
c3e3ac3ca091
removed unused "boundary" of Table/Graph.get_first;
wenzelm
parents:
33162
diff
changeset
|
291 |
in get end; |
31616 | 292 |
|
293 |
||
79093 | 294 |
(* retrieve *) |
77742 | 295 |
|
79093 | 296 |
fun retrieve {result, no_result} tab (key: key) = |
19031 | 297 |
let |
79093 | 298 |
fun compare (k, _) = Key.ord (key, k) |
299 |
fun result_equal e = if is_equal (compare e) then result e else no_result; |
|
77742 | 300 |
|
79093 | 301 |
fun find Empty = no_result |
302 |
| find (Leaf1 e) = result_equal e |
|
303 |
| find (Leaf2 (e1, e2)) = |
|
304 |
(case compare e1 of |
|
305 |
LESS => no_result |
|
306 |
| EQUAL => result e1 |
|
307 |
| GREATER => result_equal e2) |
|
308 |
| find (Leaf3 (e1, e2, e3)) = |
|
309 |
(case compare e2 of |
|
310 |
LESS => result_equal e1 |
|
311 |
| EQUAL => result e2 |
|
312 |
| GREATER => result_equal e3) |
|
313 |
| find (Branch2 (left, e, right)) = |
|
314 |
(case compare e of |
|
315 |
LESS => find left |
|
316 |
| EQUAL => result e |
|
317 |
| GREATER => find right) |
|
318 |
| find (Branch3 (left, e1, mid, e2, right)) = |
|
319 |
(case compare e1 of |
|
320 |
LESS => find left |
|
321 |
| EQUAL => result e1 |
|
19031 | 322 |
| GREATER => |
79093 | 323 |
(case compare e2 of |
324 |
LESS => find mid |
|
325 |
| EQUAL => result e2 |
|
326 |
| GREATER => find right)) |
|
327 |
| find (Size (_, arg)) = find arg; |
|
328 |
in find tab end; |
|
5015 | 329 |
|
79093 | 330 |
fun lookup tab key = retrieve {result = SOME o #2, no_result = NONE} tab key; |
331 |
fun lookup_key tab key = retrieve {result = SOME, no_result = NONE} tab key; |
|
332 |
fun defined tab key = retrieve {result = K true, no_result = false} tab key; |
|
16887 | 333 |
|
5015 | 334 |
|
19031 | 335 |
(* modify *) |
5015 | 336 |
|
337 |
datatype 'a growth = |
|
338 |
Stay of 'a table | |
|
339 |
Sprout of 'a table * (key * 'a) * 'a table; |
|
340 |
||
15761 | 341 |
exception SAME; |
342 |
||
15665 | 343 |
fun modify key f tab = |
344 |
let |
|
79093 | 345 |
fun compare (k, _) = Key.ord (key, k) |
77742 | 346 |
|
77800 | 347 |
val inc = Unsynchronized.ref 0; |
79093 | 348 |
fun insert (k: key) = (k, f NONE) before ignore (Unsynchronized.inc inc); |
349 |
fun update (k: key, x) = (k, f (SOME x)); |
|
77800 | 350 |
|
79093 | 351 |
fun modfy Empty = Sprout (Empty, (insert key), Empty) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
352 |
| 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
|
353 |
| modfy (t as Leaf2 _) = modfy (unmake t) |
77740
19c539f5d4d3
more compact data: approx. 0.85 .. 1.10 of plain list size;
wenzelm
parents:
77739
diff
changeset
|
354 |
| modfy (t as Leaf3 _) = modfy (unmake t) |
79093 | 355 |
| modfy (Branch2 (left, e, right)) = |
356 |
(case compare e of |
|
15665 | 357 |
LESS => |
358 |
(case modfy left of |
|
79093 | 359 |
Stay left' => Stay (make2 (left', e, right)) |
360 |
| Sprout (left1, e', left2) => Stay (make3 (left1, e', left2, e, right))) |
|
361 |
| EQUAL => Stay (make2 (left, update e, right)) |
|
15665 | 362 |
| GREATER => |
363 |
(case modfy right of |
|
79093 | 364 |
Stay right' => Stay (make2 (left, e, right')) |
365 |
| Sprout (right1, e', right2) => |
|
366 |
Stay (make3 (left, e, right1, e', right2)))) |
|
367 |
| modfy (Branch3 (left, e1, mid, e2, right)) = |
|
368 |
(case compare e1 of |
|
5015 | 369 |
LESS => |
15665 | 370 |
(case modfy left of |
79093 | 371 |
Stay left' => Stay (make3 (left', e1, mid, e2, right)) |
372 |
| Sprout (left1, e', left2) => |
|
373 |
Sprout (make2 (left1, e', left2), e1, make2 (mid, e2, right))) |
|
374 |
| EQUAL => Stay (make3 (left, update e1, mid, e2, right)) |
|
5015 | 375 |
| GREATER => |
79093 | 376 |
(case compare e2 of |
15665 | 377 |
LESS => |
378 |
(case modfy mid of |
|
79093 | 379 |
Stay mid' => Stay (make3 (left, e1, mid', e2, right)) |
380 |
| Sprout (mid1, e', mid2) => |
|
381 |
Sprout (make2 (left, e1, mid1), e', make2 (mid2, e2, right))) |
|
382 |
| EQUAL => Stay (make3 (left, e1, mid, update e2, right)) |
|
15665 | 383 |
| GREATER => |
384 |
(case modfy right of |
|
79093 | 385 |
Stay right' => Stay (make3 (left, e1, mid, e2, right')) |
15665 | 386 |
| Sprout (right1, q, right2) => |
79093 | 387 |
Sprout (make2 (left, e1, mid), e2, make2 (right1, q, right2))))) |
77800 | 388 |
| modfy (Size (_, arg)) = modfy arg; |
5015 | 389 |
|
77800 | 390 |
val tab' = |
77882
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
391 |
(case tab of |
79093 | 392 |
Empty => Leaf1 (insert key) |
393 |
| Leaf1 e => |
|
394 |
(case compare e of |
|
395 |
LESS => Leaf2 (insert key, e) |
|
396 |
| EQUAL => Leaf1 (update e) |
|
397 |
| GREATER => Leaf2 (e, insert key)) |
|
398 |
| Leaf2 (e1, e2) => |
|
399 |
(case compare e1 of |
|
400 |
LESS => Leaf3 (insert key, e1, e2) |
|
401 |
| EQUAL => Leaf2 (update e1, e2) |
|
77882
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
402 |
| GREATER => |
79093 | 403 |
(case compare e2 of |
404 |
LESS => Leaf3 (e1, insert key, e2) |
|
405 |
| EQUAL => Leaf2 (e1, update e2) |
|
406 |
| GREATER => Leaf3 (e1, e2, insert key))) |
|
77882
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
407 |
| _ => |
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
408 |
(case modfy tab of |
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
409 |
Stay tab' => tab' |
bb7238e7d2d9
minor performance tuning: avoid excessive (de)constructions for base cases;
wenzelm
parents:
77881
diff
changeset
|
410 |
| Sprout br => make2 br)); |
15665 | 411 |
in |
77800 | 412 |
make_size (size tab + !inc) tab' |
413 |
end handle SAME => tab; |
|
5015 | 414 |
|
17412 | 415 |
fun update (key, x) tab = modify key (fn _ => x) tab; |
416 |
fun update_new (key, x) tab = modify key (fn NONE => x | SOME _ => raise DUP key) tab; |
|
17709 | 417 |
fun default (key, x) tab = modify key (fn NONE => x | SOME _ => raise SAME) tab; |
15761 | 418 |
fun map_entry key f = modify key (fn NONE => raise SAME | SOME x => f x); |
27783 | 419 |
fun map_default (key, x) f = modify key (fn NONE => f x | SOME y => f y); |
5015 | 420 |
|
421 |
||
15014 | 422 |
(* delete *) |
423 |
||
15665 | 424 |
exception UNDEF of key; |
425 |
||
426 |
local |
|
427 |
||
77735 | 428 |
fun compare NONE _ = LESS |
15665 | 429 |
| compare (SOME k1) (k2, _) = Key.ord (k1, k2); |
15014 | 430 |
|
77737 | 431 |
fun if_equal ord x y = if is_equal ord then x else y; |
15014 | 432 |
|
15531 | 433 |
fun del (SOME k) Empty = raise UNDEF k |
77735 | 434 |
| del NONE Empty = raise Match |
79094 | 435 |
| del NONE (Leaf1 e) = (e, (true, Empty)) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
436 |
| del NONE (Leaf2 (e1, e2)) = (e1, (false, Leaf1 e2)) |
79094 | 437 |
| del k (Leaf1 e) = |
438 |
(case compare k e of |
|
439 |
EQUAL => (e, (true, Empty)) |
|
77721 | 440 |
| _ => raise UNDEF (the k)) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
441 |
| del k (Leaf2 (e1, e2)) = |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
442 |
(case compare k e1 of |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
443 |
EQUAL => (e1, (false, Leaf1 e2)) |
77721 | 444 |
| _ => |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
445 |
(case compare k e2 of |
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
446 |
EQUAL => (e2, (false, Leaf1 e1)) |
77721 | 447 |
| _ => raise UNDEF (the k))) |
79092
06176f4e2e70
slightly more compact heap: better sharing of persistent tuples;
wenzelm
parents:
77981
diff
changeset
|
448 |
| del k (Leaf3 (e1, e2, e3)) = del k (Branch2 (Leaf1 e1, e2, Leaf1 e3)) |
77721 | 449 |
| del k (Branch2 (l, p, r)) = |
450 |
(case compare k p of |
|
451 |
LESS => |
|
452 |
(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
|
453 |
(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
|
454 |
| (p', (true, l')) => (p', case unmake r of |
77721 | 455 |
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
|
456 |
(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
|
457 |
| 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
|
458 |
(make2 (l', p, rl), rp, make2 (rm, rq, rr))))) |
77721 | 459 |
| ord => |
77737 | 460 |
(case del (if_equal ord NONE k) r of |
461 |
(p', (false, r')) => (p', (false, make2 (l, if_equal ord p' p, r'))) |
|
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
462 |
| (p', (true, r')) => (p', case unmake l of |
77721 | 463 |
Branch2 (ll, lp, lr) => |
77737 | 464 |
(true, make3 (ll, lp, lr, if_equal ord p' p, r')) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
465 |
| Branch3 (ll, lp, lm, lq, lr) => (false, make2 |
77737 | 466 |
(make2 (ll, lp, lm), lq, make2 (lr, if_equal ord p' p, r')))))) |
77721 | 467 |
| del k (Branch3 (l, p, m, q, r)) = |
468 |
(case compare k q of |
|
469 |
LESS => |
|
470 |
(case compare k p of |
|
471 |
LESS => |
|
472 |
(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
|
473 |
(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
|
474 |
| (p', (true, l')) => (p', (false, case (unmake m, unmake r) of |
77721 | 475 |
(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
|
476 |
make2 (make3 (l', p, ml, mp, mr), q, r) |
77721 | 477 |
| (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
|
478 |
make3 (make2 (l', p, ml), mp, make2 (mm, mq, mr), q, r) |
77721 | 479 |
| (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
|
480 |
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
|
481 |
make2 (rm, rq, rr))))) |
77721 | 482 |
| ord => |
77737 | 483 |
(case del (if_equal ord NONE k) m of |
77721 | 484 |
(p', (false, m')) => |
77737 | 485 |
(p', (false, make3 (l, if_equal ord p' p, m', q, r))) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
486 |
| (p', (true, m')) => (p', (false, case (unmake l, unmake r) of |
77721 | 487 |
(Branch2 (ll, lp, lr), Branch2 _) => |
77737 | 488 |
make2 (make3 (ll, lp, lr, if_equal ord p' p, m'), q, r) |
77721 | 489 |
| (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
|
490 |
make3 (make2 (ll, lp, lm), lq, |
77737 | 491 |
make2 (lr, if_equal ord p' p, m'), q, r) |
77721 | 492 |
| (_, Branch3 (rl, rp, rm, rq, rr)) => |
77737 | 493 |
make3 (l, if_equal ord p' p, make2 (m', q, rl), rp, |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
494 |
make2 (rm, rq, rr)))))) |
77721 | 495 |
| ord => |
77737 | 496 |
(case del (if_equal ord NONE k) r of |
77721 | 497 |
(q', (false, r')) => |
77737 | 498 |
(q', (false, make3 (l, p, m, if_equal ord q' q, r'))) |
77736
570f1436fe0a
more compact representation of leaf nodes: only 1.10 .. 1.33 larger than plain list;
wenzelm
parents:
77735
diff
changeset
|
499 |
| (q', (true, r')) => (q', (false, case (unmake l, unmake m) of |
77721 | 500 |
(Branch2 _, Branch2 (ml, mp, mr)) => |
77737 | 501 |
make2 (l, p, make3 (ml, mp, mr, if_equal ord q' q, r')) |
77721 | 502 |
| (_, 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
|
503 |
make3 (l, p, make2 (ml, mp, mm), mq, |
77737 | 504 |
make2 (mr, if_equal ord q' q, r')) |
77721 | 505 |
| (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
|
506 |
make3 (make2 (ll, lp, lm), lq, make2 (lr, p, ml), mp, |
77800 | 507 |
make2 (mr, if_equal ord q' q, r')))))) |
508 |
| del k (Size (_, arg)) = del k arg; |
|
15665 | 509 |
in |
510 |
||
77800 | 511 |
fun delete key tab = make_size (size tab - 1) (snd (snd (del (SOME key) tab))); |
44336
59ff5a93eef4
tuned Table.delete_safe: avoid potentially expensive attempt of delete;
wenzelm
parents:
43792
diff
changeset
|
512 |
fun delete_safe key tab = if defined tab key then delete key tab else tab; |
15014 | 513 |
|
15665 | 514 |
end; |
515 |
||
15014 | 516 |
|
19031 | 517 |
(* membership operations *) |
16466 | 518 |
|
519 |
fun member eq tab (key, x) = |
|
17412 | 520 |
(case lookup tab key of |
16466 | 521 |
NONE => false |
522 |
| SOME y => eq (x, y)); |
|
15761 | 523 |
|
524 |
fun insert eq (key, x) = |
|
525 |
modify key (fn NONE => x | SOME y => if eq (x, y) then raise SAME else raise DUP key); |
|
526 |
||
527 |
fun remove eq (key, x) tab = |
|
17412 | 528 |
(case lookup tab key of |
15761 | 529 |
NONE => tab |
530 |
| SOME y => if eq (x, y) then delete key tab else tab); |
|
531 |
||
532 |
||
19031 | 533 |
(* simultaneous modifications *) |
534 |
||
79249 | 535 |
fun make_distinct entries = build (fold default entries); |
536 |
||
74266 | 537 |
fun make entries = build (fold update_new entries); |
5015 | 538 |
|
77781 | 539 |
fun join f (tab1, tab2) = |
55727
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
540 |
let |
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
541 |
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
|
542 |
in |
77781 | 543 |
if pointer_eq (tab1, tab2) then tab1 |
544 |
else if is_empty tab1 then tab2 |
|
545 |
else fold_table add tab2 tab1 |
|
55727
7e330ae052bb
optimize special case according to Library.merge (see also 8fbc355100f2, 520872460b7b);
wenzelm
parents:
52049
diff
changeset
|
546 |
end; |
12287 | 547 |
|
19031 | 548 |
fun merge eq = join (fn key => fn xy => if eq xy then raise SAME else raise DUP key); |
5015 | 549 |
|
77822 | 550 |
fun joins f tabs = Library.foldl (join f) (empty, tabs); |
551 |
fun merges eq tabs = Library.foldl (merge eq) (empty, tabs); |
|
552 |
||
5015 | 553 |
|
19031 | 554 |
(* list tables *) |
15761 | 555 |
|
18946 | 556 |
fun lookup_list tab key = these (lookup tab key); |
25391 | 557 |
|
558 |
fun cons_list (key, x) tab = modify key (fn NONE => [x] | SOME xs => x :: xs) tab; |
|
5015 | 559 |
|
77981 | 560 |
fun modify_list key f = |
561 |
modify key (fn arg => |
|
562 |
let |
|
563 |
val xs = the_default [] arg; |
|
564 |
val ys = f xs; |
|
565 |
in if pointer_eq (xs, ys) then raise SAME else ys end); |
|
566 |
||
567 |
fun insert_list eq (key, x) = modify_list key (Library.insert eq x); |
|
568 |
fun update_list eq (key, x) = modify_list key (Library.update eq x); |
|
25391 | 569 |
|
18946 | 570 |
fun remove_list eq (key, x) tab = |
77981 | 571 |
map_entry key (fn xs => |
572 |
(case Library.remove eq x xs of |
|
573 |
[] => raise UNDEF key |
|
574 |
| ys => if pointer_eq (xs, ys) then raise SAME else ys)) tab |
|
15761 | 575 |
handle UNDEF _ => delete key tab; |
5015 | 576 |
|
74266 | 577 |
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
|
578 |
fun dest_list tab = maps (fn (key, xs) => map (pair key) xs) (dest tab); |
77973 | 579 |
fun merge_list eq = |
77975 | 580 |
join (fn _ => fn xy => if eq_list eq xy then raise SAME else Library.merge eq xy); |
5015 | 581 |
|
582 |
||
74227 | 583 |
(* set operations *) |
50234 | 584 |
|
585 |
type set = unit table; |
|
586 |
||
67529 | 587 |
fun insert_set x = default (x, ()); |
588 |
fun remove_set x : set -> set = delete_safe x; |
|
74266 | 589 |
fun make_set xs = build (fold insert_set xs); |
50234 | 590 |
|
591 |
||
79163 | 592 |
(* cache *) |
593 |
||
594 |
fun unsynchronized_cache f = |
|
80240 | 595 |
let |
596 |
val cache1 = Unsynchronized.ref empty; |
|
597 |
val cache2 = Unsynchronized.ref empty; |
|
598 |
in |
|
79163 | 599 |
fn x => |
80240 | 600 |
(case lookup (! cache1) x of |
601 |
SOME y => y |
|
79163 | 602 |
| NONE => |
80240 | 603 |
(case lookup (! cache2) x of |
604 |
SOME exn => Exn.reraise exn |
|
605 |
| NONE => |
|
606 |
(case Exn.result f x of |
|
607 |
Exn.Res y => (Unsynchronized.change cache1 (update (x, y)); y) |
|
608 |
| Exn.Exn exn => (Unsynchronized.change cache2 (update (x, exn)); Exn.reraise exn)))) |
|
79163 | 609 |
end; |
610 |
||
611 |
||
47980
c81801f881b3
simplified Poly/ML setup -- 5.3.0 is now the common base-line;
wenzelm
parents:
44336
diff
changeset
|
612 |
(* 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
|
613 |
|
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
|
614 |
val _ = |
62819
d3ff367a16a0
careful export of type-dependent functions, without losing their special status;
wenzelm
parents:
62503
diff
changeset
|
615 |
ML_system_pp (fn depth => fn pretty => fn tab => |
62503 | 616 |
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
|
617 |
(ML_Pretty.enum "," "{" "}" |
62503 | 618 |
(ML_Pretty.pair |
62819
d3ff367a16a0
careful export of type-dependent functions, without losing their special status;
wenzelm
parents:
62503
diff
changeset
|
619 |
(ML_Pretty.from_polyml o ML_system_pretty) |
62503 | 620 |
(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
|
621 |
(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
|
622 |
|
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
|
623 |
|
5681 | 624 |
(*final declarations of this structure!*) |
39020 | 625 |
val map = map_table; |
16446 | 626 |
val fold = fold_table; |
28334 | 627 |
val fold_rev = fold_rev_table; |
5015 | 628 |
|
629 |
end; |
|
630 |
||
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31621
diff
changeset
|
631 |
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
|
632 |
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
|
633 |
structure Symreltab = Table(type key = string * string |
30647
ef8f46c3158a
added Symreltab (binary relations of symbols) instance of TableFun
haftmann
parents:
30290
diff
changeset
|
634 |
val ord = prod_ord fast_string_ord fast_string_ord); |