-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathset.go
376 lines (348 loc) · 7.76 KB
/
set.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
// This file generated by genset.go
package scp
import "sort"
// ValueSet is a set of Value, implemented as a sorted slice.
type ValueSet []Value
func (vs ValueSet) find(v Value) int {
return sort.Search(len(vs), func(index int) bool {
return !vs[index].Less(v)
})
}
func ValueEqual(a, b Value) bool {
return !a.Less(b) && !b.Less(a)
}
// Add produces a ValueSet containing the members of vs plus the
// element v.
func (vs ValueSet) Add(v Value) ValueSet {
index := vs.find(v)
if index < len(vs) && ValueEqual(v, vs[index]) {
return vs
}
var result ValueSet
result = append(result, vs[:index]...)
result = append(result, v)
result = append(result, vs[index:]...)
return result
}
// Union produces a ValueSet containing all the members of both sets.
func (vs ValueSet) Union(other ValueSet) ValueSet {
if len(vs) == 0 {
return other
}
if len(other) == 0 {
return vs
}
var (
i, j int
result ValueSet
)
for i < len(vs) && j < len(other) {
switch {
case vs[i].Less(other[j]):
result = append(result, vs[i])
i++
case other[j].Less(vs[i]):
result = append(result, other[j])
j++
default:
result = append(result, vs[i])
i++
j++
}
}
result = append(result, vs[i:]...)
result = append(result, other[j:]...)
return result
}
// Intersection produces a ValueSet with only the elements in both
// sets.
func (vs ValueSet) Intersection(other ValueSet) ValueSet {
if len(vs) == 0 || len(other) == 0 {
return nil
}
var result ValueSet
for i, j := 0, 0; i < len(vs) && j < len(other); {
switch {
case vs[i].Less(other[j]):
i++
case other[j].Less(vs[i]):
j++
default:
result = append(result, vs[i])
i++
j++
}
}
return result
}
// Minus produces a ValueSet with only the members of vs that don't
// appear in other.
func (vs ValueSet) Minus(other ValueSet) ValueSet {
if len(vs) == 0 || len(other) == 0 {
return vs
}
var (
result ValueSet
i, j int
)
for i < len(vs) && j < len(other) {
switch {
case vs[i].Less(other[j]):
result = append(result, vs[i])
i++
case other[j].Less(vs[i]):
j++
default:
i++
j++
}
}
result = append(result, vs[i:]...)
return result
}
// Remove produces a ValueSet without the specified element.
func (vs ValueSet) Remove(v Value) ValueSet {
index := vs.find(v)
if index >= len(vs) || !ValueEqual(v, vs[index]) {
return vs
}
var result ValueSet
result = append(result, vs[:index]...)
result = append(result, vs[index+1:]...)
return result
}
// Contains tests whether vs contains v.
func (vs ValueSet) Contains(v Value) bool {
index := vs.find(v)
return index < len(vs) && ValueEqual(vs[index], v)
}
// BallotSet is a set of Ballot, implemented as a sorted slice.
type BallotSet []Ballot
func (bs BallotSet) find(b Ballot) int {
return sort.Search(len(bs), func(index int) bool {
return !bs[index].Less(b)
})
}
func BallotEqual(a, b Ballot) bool {
return !a.Less(b) && !b.Less(a)
}
// Add produces a BallotSet containing the members of bs plus the
// element b.
func (bs BallotSet) Add(b Ballot) BallotSet {
index := bs.find(b)
if index < len(bs) && BallotEqual(b, bs[index]) {
return bs
}
var result BallotSet
result = append(result, bs[:index]...)
result = append(result, b)
result = append(result, bs[index:]...)
return result
}
// Union produces a BallotSet containing all the members of both sets.
func (bs BallotSet) Union(other BallotSet) BallotSet {
if len(bs) == 0 {
return other
}
if len(other) == 0 {
return bs
}
var (
i, j int
result BallotSet
)
for i < len(bs) && j < len(other) {
switch {
case bs[i].Less(other[j]):
result = append(result, bs[i])
i++
case other[j].Less(bs[i]):
result = append(result, other[j])
j++
default:
result = append(result, bs[i])
i++
j++
}
}
result = append(result, bs[i:]...)
result = append(result, other[j:]...)
return result
}
// Intersection produces a BallotSet with only the elements in both
// sets.
func (bs BallotSet) Intersection(other BallotSet) BallotSet {
if len(bs) == 0 || len(other) == 0 {
return nil
}
var result BallotSet
for i, j := 0, 0; i < len(bs) && j < len(other); {
switch {
case bs[i].Less(other[j]):
i++
case other[j].Less(bs[i]):
j++
default:
result = append(result, bs[i])
i++
j++
}
}
return result
}
// Minus produces a BallotSet with only the members of bs that don't
// appear in other.
func (bs BallotSet) Minus(other BallotSet) BallotSet {
if len(bs) == 0 || len(other) == 0 {
return bs
}
var (
result BallotSet
i, j int
)
for i < len(bs) && j < len(other) {
switch {
case bs[i].Less(other[j]):
result = append(result, bs[i])
i++
case other[j].Less(bs[i]):
j++
default:
i++
j++
}
}
result = append(result, bs[i:]...)
return result
}
// Remove produces a BallotSet without the specified element.
func (bs BallotSet) Remove(b Ballot) BallotSet {
index := bs.find(b)
if index >= len(bs) || !BallotEqual(b, bs[index]) {
return bs
}
var result BallotSet
result = append(result, bs[:index]...)
result = append(result, bs[index+1:]...)
return result
}
// Contains tests whether bs contains b.
func (bs BallotSet) Contains(b Ballot) bool {
index := bs.find(b)
return index < len(bs) && BallotEqual(bs[index], b)
}
// NodeIDSet is a set of NodeID, implemented as a sorted slice.
type NodeIDSet []NodeID
func (ns NodeIDSet) find(n NodeID) int {
return sort.Search(len(ns), func(index int) bool {
return !ns[index].Less(n)
})
}
func NodeIDEqual(a, b NodeID) bool {
return !a.Less(b) && !b.Less(a)
}
// Add produces a NodeIDSet containing the members of ns plus the
// element n.
func (ns NodeIDSet) Add(n NodeID) NodeIDSet {
index := ns.find(n)
if index < len(ns) && NodeIDEqual(n, ns[index]) {
return ns
}
var result NodeIDSet
result = append(result, ns[:index]...)
result = append(result, n)
result = append(result, ns[index:]...)
return result
}
// Union produces a NodeIDSet containing all the members of both sets.
func (ns NodeIDSet) Union(other NodeIDSet) NodeIDSet {
if len(ns) == 0 {
return other
}
if len(other) == 0 {
return ns
}
var (
i, j int
result NodeIDSet
)
for i < len(ns) && j < len(other) {
switch {
case ns[i].Less(other[j]):
result = append(result, ns[i])
i++
case other[j].Less(ns[i]):
result = append(result, other[j])
j++
default:
result = append(result, ns[i])
i++
j++
}
}
result = append(result, ns[i:]...)
result = append(result, other[j:]...)
return result
}
// Intersection produces a NodeIDSet with only the elements in both
// sets.
func (ns NodeIDSet) Intersection(other NodeIDSet) NodeIDSet {
if len(ns) == 0 || len(other) == 0 {
return nil
}
var result NodeIDSet
for i, j := 0, 0; i < len(ns) && j < len(other); {
switch {
case ns[i].Less(other[j]):
i++
case other[j].Less(ns[i]):
j++
default:
result = append(result, ns[i])
i++
j++
}
}
return result
}
// Minus produces a NodeIDSet with only the members of ns that don't
// appear in other.
func (ns NodeIDSet) Minus(other NodeIDSet) NodeIDSet {
if len(ns) == 0 || len(other) == 0 {
return ns
}
var (
result NodeIDSet
i, j int
)
for i < len(ns) && j < len(other) {
switch {
case ns[i].Less(other[j]):
result = append(result, ns[i])
i++
case other[j].Less(ns[i]):
j++
default:
i++
j++
}
}
result = append(result, ns[i:]...)
return result
}
// Remove produces a NodeIDSet without the specified element.
func (ns NodeIDSet) Remove(n NodeID) NodeIDSet {
index := ns.find(n)
if index >= len(ns) || !NodeIDEqual(n, ns[index]) {
return ns
}
var result NodeIDSet
result = append(result, ns[:index]...)
result = append(result, ns[index+1:]...)
return result
}
// Contains tests whether ns contains n.
func (ns NodeIDSet) Contains(n NodeID) bool {
index := ns.find(n)
return index < len(ns) && NodeIDEqual(ns[index], n)
}