Increase range of random numbers (I don't think has impact on results, but why not)
This commit is contained in:
parent
d1ea2c1406
commit
33a838ff69
2
main.go
2
main.go
@ -12,7 +12,7 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
randomMin = 0
|
randomMin = 0
|
||||||
randomMax = 9999999999999999
|
randomMax = 999999999999999999 //int64 max value is 9223372036854775807. We use one digit less than that with all 9's in order to not give bias to any digits.
|
||||||
numSamples = 100000000
|
numSamples = 100000000
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user