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