-
Notifications
You must be signed in to change notification settings - Fork 669
/
binary_snowball.go
66 lines (54 loc) · 1.92 KB
/
binary_snowball.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
// Copyright (C) 2019-2023, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package snowball
import "fmt"
var _ BinarySnowball = (*binarySnowball)(nil)
func newBinarySnowball(beta, choice int) binarySnowball {
return binarySnowball{
binarySnowflake: newBinarySnowflake(beta, choice),
preference: choice,
}
}
// binarySnowball is the implementation of a binary snowball instance
type binarySnowball struct {
// wrap the binary snowflake logic
binarySnowflake
// preference is the choice with the largest number of polls which preferred
// the color. Ties are broken by switching choice lazily
preference int
// preferenceStrength tracks the total number of network polls which
// preferred each choice
preferenceStrength [2]int
}
func (sb *binarySnowball) Preference() int {
// It is possible, with low probability, that the snowflake preference is
// not equal to the snowball preference when snowflake finalizes. However,
// this case is handled for completion. Therefore, if snowflake is
// finalized, then our finalized snowflake choice should be preferred.
if sb.Finalized() {
return sb.binarySnowflake.Preference()
}
return sb.preference
}
func (sb *binarySnowball) RecordSuccessfulPoll(choice int) {
sb.increasePreferenceStrength(choice)
sb.binarySnowflake.RecordSuccessfulPoll(choice)
}
func (sb *binarySnowball) RecordPollPreference(choice int) {
sb.increasePreferenceStrength(choice)
sb.binarySnowflake.RecordPollPreference(choice)
}
func (sb *binarySnowball) String() string {
return fmt.Sprintf(
"SB(Preference = %d, PreferenceStrength[0] = %d, PreferenceStrength[1] = %d, %s)",
sb.preference,
sb.preferenceStrength[0],
sb.preferenceStrength[1],
&sb.binarySnowflake)
}
func (sb *binarySnowball) increasePreferenceStrength(choice int) {
sb.preferenceStrength[choice]++
if sb.preferenceStrength[choice] > sb.preferenceStrength[1-choice] {
sb.preference = choice
}
}