Increase range of random numbers (I don't think has impact on results, but why not)

This commit is contained in:
Steven Polley 2020-11-15 03:00:39 +00:00
parent d1ea2c1406
commit 33a838ff69
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import (
const (
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
)