Skip to content

Commit

Permalink
fix: remove rogue print statement
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Bailey <[email protected]>
  • Loading branch information
colebaileygit committed Apr 3, 2024
1 parent ae8cbfe commit 52f29a4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/pkg/evaluator/fractional.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ func distributeValue(value string, feDistribution []fractionalEvaluationDistribu
hashRatio := math.Abs(float64(hashValue)) / math.MaxInt32
bucket := int(hashRatio * 100) // in range [0, 100]

fmt.Println(value, feDistribution)

rangeEnd := 0
for _, dist := range feDistribution {
rangeEnd += dist.percentage
Expand Down

0 comments on commit 52f29a4

Please sign in to comment.