-
Notifications
You must be signed in to change notification settings - Fork 672
/
uniform_replacer.go
69 lines (58 loc) · 1.56 KB
/
uniform_replacer.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
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package sampler
type defaultMap map[uint64]uint64
func (m defaultMap) get(key uint64, defaultVal uint64) uint64 {
if val, ok := m[key]; ok {
return val
}
return defaultVal
}
// uniformReplacer allows for sampling over a uniform distribution without
// replacement.
//
// Sampling is performed by lazily performing an array shuffle of the array
// [0, 1, ..., length - 1]. By performing the first count swaps of this shuffle,
// we can create an array of length count with elements sampled with uniform
// probability.
//
// Initialization takes O(1) time.
//
// Sampling is performed in O(count) time and O(count) space.
type uniformReplacer struct {
rng *rng
length uint64
drawn defaultMap
drawsCount uint64
}
func (s *uniformReplacer) Initialize(length uint64) {
s.length = length
s.drawn = make(defaultMap)
s.drawsCount = 0
}
func (s *uniformReplacer) Sample(count int) ([]uint64, bool) {
s.Reset()
results := make([]uint64, count)
for i := 0; i < count; i++ {
ret, hasNext := s.Next()
if !hasNext {
return nil, false
}
results[i] = ret
}
return results, true
}
func (s *uniformReplacer) Reset() {
clear(s.drawn)
s.drawsCount = 0
}
func (s *uniformReplacer) Next() (uint64, bool) {
if s.drawsCount >= s.length {
return 0, false
}
draw := s.rng.Uint64Inclusive(s.length-1-s.drawsCount) + s.drawsCount
ret := s.drawn.get(draw, draw)
s.drawn[draw] = s.drawn.get(s.drawsCount, s.drawsCount)
s.drawsCount++
return ret, true
}