Commit b769f4cd authored by Bram Schoenmakers's avatar Bram Schoenmakers

Extend table and reformat

parent 75627f3d
......@@ -29,37 +29,47 @@ _DEFAULT_ALPHABET = '0123456789abcdefghijklmnopqrstuvwxyz'
# configured alphabet, the second dimension is the width of the ID
# The values are prime numbers that are used for populating the hash table.
_TABLE_SIZES = {
10: { 3: 997, 4: 9973, 5: 99991, 6: 999983 },
11: { 3: 1327, 4: 14639, 5: 161047, 6: 1771559 },
12: { 3: 1723, 4: 20731, 5: 248827, 6: 2985979 },
13: { 3: 2179, 4: 28559, 5: 371291, 6: 4826797 },
14: { 3: 2741, 4: 38393, 5: 573811, 6: 7529519 },
15: { 3: 3373, 4: 50599, 5: 759371, 6: 11390593 },
16: { 3: 4093, 4: 65521, 5: 1048573 },
17: { 3: 4909, 4: 83497, 5: 1419839 },
18: { 3: 5827, 4: 104971, 5: 1889561 },
19: { 3: 6857, 4: 130307, 5: 2476081 },
20: { 3: 7993, 4: 159979, 5: 3199997 },
21: { 3: 9257, 4: 194479, 5: 4084081 },
22: { 3: 10639, 4: 245239, 5: 5153623 },
23: { 3: 12163, 4: 279823, 5: 6436327 },
24: { 3: 13807, 4: 331769, 5: 7962607 },
25: { 3: 15619, 4: 390581, 5: 9765619 },
26: { 3: 17573, 4: 456959, 5: 11881357 },
27: { 3: 19681, 4: 531383, 5: 14348891 },
28: { 3: 21943, 4: 614639, 5: 17210353 },
29: { 3: 24379, 4: 707279, 5: 20511143 },
30: { 3: 26993, 4: 809993, 5: 24299981 },
31: { 3: 29789, 4: 923513, 5: 28629149 },
32: { 3: 32749, 4: 1048573 },
33: { 3: 35933, 4: 1185907 },
34: { 3: 39301, 4: 1336333 },
35: { 3: 42863, 4: 1500619 },
36: { 3: 46649, 4: 1679609 },
37: { 3: 50651, 4: 1874153 },
38: { 3: 54869, 4: 2085133 },
39: { 3: 59281, 4: 2313439 },
40: { 3: 63997, 4: 2559989 },
10: {3: 997, 4: 9973, 5: 99991, 6: 999983},
11: {3: 1327, 4: 14639, 5: 161047, 6: 1771559},
12: {3: 1723, 4: 20731, 5: 248827, 6: 2985979},
13: {3: 2179, 4: 28559, 5: 371291, 6: 4826797},
14: {3: 2741, 4: 38393, 5: 573811, 6: 7529519},
15: {3: 3373, 4: 50599, 5: 759371, 6: 11390593},
16: {3: 4093, 4: 65521, 5: 1048573},
17: {3: 4909, 4: 83497, 5: 1419839},
18: {3: 5827, 4: 104971, 5: 1889561},
19: {3: 6857, 4: 130307, 5: 2476081},
20: {3: 7993, 4: 159979, 5: 3199997},
21: {3: 9257, 4: 194479, 5: 4084081},
22: {3: 10639, 4: 245239, 5: 5153623},
23: {3: 12163, 4: 279823, 5: 6436327},
24: {3: 13807, 4: 331769, 5: 7962607},
25: {3: 15619, 4: 390581, 5: 9765619},
26: {3: 17573, 4: 456959, 5: 11881357},
27: {3: 19681, 4: 531383, 5: 14348891},
28: {3: 21943, 4: 614639, 5: 17210353},
29: {3: 24379, 4: 707279, 5: 20511143},
30: {3: 26993, 4: 809993, 5: 24299981},
31: {3: 29789, 4: 923513, 5: 28629149},
32: {3: 32749, 4: 1048573},
33: {3: 35933, 4: 1185907},
34: {3: 39301, 4: 1336333},
35: {3: 42863, 4: 1500619},
36: {3: 46649, 4: 1679609},
37: {3: 50651, 4: 1874153},
38: {3: 54869, 4: 2085133},
39: {3: 59281, 4: 2313439},
40: {3: 63997, 4: 2559989},
41: {3: 68917, 4: 2825759},
42: {3: 74077, 4: 3111679},
43: {3: 79493, 4: 3418799},
44: {3: 85159, 4: 3748079},
45: {3: 91121, 4: 4100611},
46: {3: 97327, 4: 4477453},
47: {3: 103813, 4: 4879669},
48: {3: 110587, 4: 5308379},
49: {3: 117643, 4: 5764799},
50: {3: 124991, 4: 6249989},
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment