Significantly reduce the weight of large int numbers

This commit is contained in:
pyoor 2018-08-13 09:35:47 -04:00
parent b47a281403
commit e95c56bb7f
1 changed files with 2 additions and 2 deletions

View File

@ -169,8 +169,8 @@ class number extends make {
static interesting () {
return random.choose([
[10, [-128, -1, 0, 1, 16, 32, 64, 100, 127]],
[7, [-32768, -129, 128, 255, 256, 512, 1000, 1024, 4096, 32767]],
[50, [-128, -1, 0, 1, 16, 32, 64, 100, 127]],
[30, [-32768, -129, 128, 255, 256, 512, 1000, 1024, 4096, 32767]],
[1, [-2147483648, -100663046, -32769, 32768, 65535, 65536, 100663045, 2147483647]]
])
}