Skip to content

Commit 3612f86

Browse files
committed
Giving more room for entropy
1 parent c37f0e4 commit 3612f86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ func newTransport(target string, yGen, tGen uint64) *transport {
238238
const (
239239
// We currently have room for increase/decrease the entropy three times in a row.
240240
// This is an important constraint, as the candidate will be bound by min and max fraction.
241-
maxFraction = 0.85
241+
maxFraction = 0.9
242242
startFraction = 0.7
243-
entropyFraction = 0.05
244-
minFraction = 0.55
243+
entropyFraction = 0.1
244+
minFraction = 0.5
245245
)
246246

247247
type sheddingThreshold struct {

0 commit comments

Comments
 (0)