-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
SpookyV2_64.txt
1137 lines (963 loc) · 64.8 KB
/
SpookyV2_64.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-------------------------------------------------------------------------------
--- Testing SpookyV2_64 "Bob Jenkins' SpookyV2, 64-bit result" GOOD
[[[ Sanity Tests ]]]
Verification value 0x972C4BDC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 3.831 bytes/cycle - 10959.39 MiB/sec @ 3 ghz
Alignment 6 - 3.831 bytes/cycle - 10959.81 MiB/sec @ 3 ghz
Alignment 5 - 4.644 bytes/cycle - 13287.20 MiB/sec @ 3 ghz
Alignment 4 - 4.634 bytes/cycle - 13257.92 MiB/sec @ 3 ghz
Alignment 3 - 4.626 bytes/cycle - 13235.05 MiB/sec @ 3 ghz
Alignment 2 - 4.620 bytes/cycle - 13218.66 MiB/sec @ 3 ghz
Alignment 1 - 4.621 bytes/cycle - 13220.53 MiB/sec @ 3 ghz
Alignment 0 - 4.646 bytes/cycle - 13291.98 MiB/sec @ 3 ghz
Average - 4.432 bytes/cycle - 12678.82 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 42.00 cycles/hash
Small key speed test - 2-byte keys - 44.85 cycles/hash
Small key speed test - 3-byte keys - 44.99 cycles/hash
Small key speed test - 4-byte keys - 41.99 cycles/hash
Small key speed test - 5-byte keys - 44.79 cycles/hash
Small key speed test - 6-byte keys - 45.00 cycles/hash
Small key speed test - 7-byte keys - 46.87 cycles/hash
Small key speed test - 8-byte keys - 42.00 cycles/hash
Small key speed test - 9-byte keys - 43.00 cycles/hash
Small key speed test - 10-byte keys - 45.00 cycles/hash
Small key speed test - 11-byte keys - 46.00 cycles/hash
Small key speed test - 12-byte keys - 42.28 cycles/hash
Small key speed test - 13-byte keys - 45.00 cycles/hash
Small key speed test - 14-byte keys - 45.00 cycles/hash
Small key speed test - 15-byte keys - 45.87 cycles/hash
Small key speed test - 16-byte keys - 67.79 cycles/hash
Small key speed test - 17-byte keys - 66.89 cycles/hash
Small key speed test - 18-byte keys - 67.60 cycles/hash
Small key speed test - 19-byte keys - 67.55 cycles/hash
Small key speed test - 20-byte keys - 66.89 cycles/hash
Small key speed test - 21-byte keys - 67.49 cycles/hash
Small key speed test - 22-byte keys - 67.77 cycles/hash
Small key speed test - 23-byte keys - 69.90 cycles/hash
Small key speed test - 24-byte keys - 66.97 cycles/hash
Small key speed test - 25-byte keys - 67.96 cycles/hash
Small key speed test - 26-byte keys - 69.59 cycles/hash
Small key speed test - 27-byte keys - 69.73 cycles/hash
Small key speed test - 28-byte keys - 68.00 cycles/hash
Small key speed test - 29-byte keys - 68.53 cycles/hash
Small key speed test - 30-byte keys - 69.76 cycles/hash
Small key speed test - 31-byte keys - 70.99 cycles/hash
Average 56.711 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 716.457 cycles/op (479826 inserts, 1% deletions)
Running std HashMapTest: 587.539 cycles/op (4.5 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 774.680 cycles/op (479826 inserts, 1% deletions)
Running fast HashMapTest: 437.667 cycles/op (16.4 stdv) ....... PASS
[[[ Avalanche Tests ]]]
Testing 24-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.646000%
Testing 32-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.694000%
Testing 40-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.654667%
Testing 48-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.565333%
Testing 56-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.622667%
Testing 64-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.634667%
Testing 72-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.668000%
Testing 80-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.760667%
Testing 96-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.748667%
Testing 112-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.687333%
Testing 128-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.708000%
Testing 160-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.706000%
Testing 512-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.812667%
Testing 1024-bit keys -> 64-bit hashes, 300000 reps.......... worst bias is 0.776667%
[[[ Keyset 'Sparse' Tests ]]]
Keyset 'Sparse' - 16-bit keys with up to 9 bits set - 50643 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 0.3, actual 0 (0.00x)
Testing collisions (high 19-25 bits) - Worst is 20 bits: 1244/1203 (1.03x)
Testing collisions (low 32-bit) - Expected 0.3, actual 0 (0.00x)
Testing collisions (low 19-25 bits) - Worst is 25 bits: 41/38 (1.07x)
Testing distribution - Worst bias is the 13-bit window at bit 41 - 0.687%
Keyset 'Sparse' - 24-bit keys with up to 8 bits set - 1271626 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 188.2, actual 196 (1.04x) (8)
Testing collisions (high 24-35 bits) - Worst is 33 bits: 109/94 (1.16x)
Testing collisions (low 32-bit) - Expected 188.2, actual 187 (0.99x) (-1)
Testing collisions (low 24-35 bits) - Worst is 35 bits: 25/23 (1.06x)
Testing distribution - Worst bias is the 17-bit window at bit 32 - 0.119%
Keyset 'Sparse' - 32-bit keys with up to 7 bits set - 4514873 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 2372.2, actual 2330 (0.98x) (-42)
Testing collisions (high 25-38 bits) - Worst is 38 bits: 47/37 (1.27x)
Testing collisions (low 32-bit) - Expected 2372.2, actual 2401 (1.01x) (29)
Testing collisions (low 25-38 bits) - Worst is 38 bits: 41/37 (1.11x)
Testing distribution - Worst bias is the 18-bit window at bit 43 - 0.035%
Keyset 'Sparse' - 40-bit keys with up to 6 bits set - 4598479 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 2460.8, actual 2457 (1.00x) (-3)
Testing collisions (high 25-38 bits) - Worst is 38 bits: 47/38 (1.22x)
Testing collisions (low 32-bit) - Expected 2460.8, actual 2431 (0.99x) (-29)
Testing collisions (low 25-38 bits) - Worst is 38 bits: 41/38 (1.07x)
Testing distribution - Worst bias is the 19-bit window at bit 21 - 0.047%
Keyset 'Sparse' - 48-bit keys with up to 6 bits set - 14196869 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 23437.8, actual 23353 (1.00x) (-84)
Testing collisions (high 27-42 bits) - Worst is 27 bits: 725046/725048 (1.00x)
Testing collisions (low 32-bit) - Expected 23437.8, actual 23408 (1.00x) (-29)
Testing collisions (low 27-42 bits) - Worst is 41 bits: 57/45 (1.24x)
Testing distribution - Worst bias is the 20-bit window at bit 49 - 0.026%
Keyset 'Sparse' - 56-bit keys with up to 5 bits set - 4216423 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 2069.0, actual 2206 (1.07x) (138)
Testing collisions (high 25-38 bits) - Worst is 38 bits: 44/32 (1.36x)
Testing collisions (low 32-bit) - Expected 2069.0, actual 2065 (1.00x) (-3)
Testing collisions (low 25-38 bits) - Worst is 29 bits: 16543/16513 (1.00x)
Testing distribution - Worst bias is the 19-bit window at bit 51 - 0.039%
Keyset 'Sparse' - 64-bit keys with up to 5 bits set - 8303633 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8021.7, actual 8007 (1.00x) (-14)
Testing collisions (high 26-40 bits) - Worst is 30 bits: 32158/32024 (1.00x)
Testing collisions (low 32-bit) - Expected 8021.7, actual 7976 (0.99x) (-45)
Testing collisions (low 26-40 bits) - Worst is 40 bits: 40/31 (1.28x)
Testing distribution - Worst bias is the 20-bit window at bit 53 - 0.034%
Keyset 'Sparse' - 72-bit keys with up to 5 bits set - 15082603 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 26451.8, actual 26585 (1.01x) (134)
Testing collisions (high 27-42 bits) - Worst is 37 bits: 853/827 (1.03x)
Testing collisions (low 32-bit) - Expected 26451.8, actual 26124 (0.99x) (-327)
Testing collisions (low 27-42 bits) - Worst is 41 bits: 57/51 (1.10x)
Testing distribution - Worst bias is the 20-bit window at bit 55 - 0.017%
Keyset 'Sparse' - 96-bit keys with up to 4 bits set - 3469497 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 1401.0, actual 1386 (0.99x) (-14)
Testing collisions (high 25-38 bits) - Worst is 31 bits: 2851/2801 (1.02x)
Testing collisions (low 32-bit) - Expected 1401.0, actual 1389 (0.99x) (-11)
Testing collisions (low 25-38 bits) - Worst is 37 bits: 50/43 (1.14x)
Testing distribution - Worst bias is the 18-bit window at bit 62 - 0.049%
Keyset 'Sparse' - 160-bit keys with up to 4 bits set - 26977161 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 84546.1, actual 84788 (1.00x) (242)
Testing collisions (high 28-44 bits) - Worst is 44 bits: 24/20 (1.16x)
Testing collisions (low 32-bit) - Expected 84546.1, actual 84982 (1.01x) (436)
Testing collisions (low 28-44 bits) - Worst is 44 bits: 29/20 (1.40x)
Testing distribution - Worst bias is the 20-bit window at bit 32 - 0.012%
Keyset 'Sparse' - 256-bit keys with up to 3 bits set - 2796417 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 910.2, actual 929 (1.02x) (19)
Testing collisions (high 25-37 bits) - Worst is 37 bits: 40/28 (1.41x)
Testing collisions (low 32-bit) - Expected 910.2, actual 950 (1.04x) (40)
Testing collisions (low 25-37 bits) - Worst is 30 bits: 3808/3638 (1.05x)
Testing distribution - Worst bias is the 19-bit window at bit 15 - 0.066%
Keyset 'Sparse' - 512-bit keys with up to 3 bits set - 22370049 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 58155.4, actual 57953 (1.00x) (-202)
Testing collisions (high 28-43 bits) - Worst is 40 bits: 235/227 (1.03x)
Testing collisions (low 32-bit) - Expected 58155.4, actual 57803 (0.99x) (-352)
Testing collisions (low 28-43 bits) - Worst is 42 bits: 69/56 (1.21x)
Testing distribution - Worst bias is the 20-bit window at bit 23 - 0.008%
Keyset 'Sparse' - 1024-bit keys with up to 2 bits set - 524801 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 32.1, actual 32 (1.00x)
Testing collisions (high 22-32 bits) - Worst is 24 bits: 8233/8123 (1.01x)
Testing collisions (low 32-bit) - Expected 32.1, actual 30 (0.94x)
Testing collisions (low 22-32 bits) - Worst is 30 bits: 137/128 (1.07x)
Testing distribution - Worst bias is the 16-bit window at bit 60 - 0.151%
Keyset 'Sparse' - 2048-bit keys with up to 2 bits set - 2098177 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 512.4, actual 507 (0.99x) (-5)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 39/32 (1.22x)
Testing collisions (low 32-bit) - Expected 512.4, actual 469 (0.92x)
Testing collisions (low 24-36 bits) - Worst is 26 bits: 32529/32460 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 19 - 0.069%
[[[ Keyset 'Permutation' Tests ]]]
Combination Lowbits Tests:
Keyset 'Combination' - up to 7 blocks from a set of 8 - 2396744 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 668.6, actual 698 (1.04x) (30)
Testing collisions (high 24-37 bits) - Worst is 32 bits: 698/668 (1.04x)
Testing collisions (low 32-bit) - Expected 668.6, actual 648 (0.97x)
Testing collisions (low 24-37 bits) - Worst is 37 bits: 24/20 (1.15x)
Testing distribution - Worst bias is the 18-bit window at bit 5 - 0.075%
Combination Highbits Tests
Keyset 'Combination' - up to 7 blocks from a set of 8 - 2396744 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 668.6, actual 669 (1.00x) (1)
Testing collisions (high 24-37 bits) - Worst is 30 bits: 2698/2672 (1.01x)
Testing collisions (low 32-bit) - Expected 668.6, actual 724 (1.08x) (56)
Testing collisions (low 24-37 bits) - Worst is 32 bits: 724/668 (1.08x)
Testing distribution - Worst bias is the 18-bit window at bit 34 - 0.079%
Combination Hi-Lo Tests:
Keyset 'Combination' - up to 6 blocks from a set of 15 - 12204240 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 17322.9, actual 17351 (1.00x) (29)
Testing collisions (high 27-41 bits) - Worst is 37 bits: 577/541 (1.06x)
Testing collisions (low 32-bit) - Expected 17322.9, actual 17302 (1.00x) (-20)
Testing collisions (low 27-41 bits) - Worst is 38 bits: 279/270 (1.03x)
Testing distribution - Worst bias is the 20-bit window at bit 4 - 0.031%
Combination 0x8000000 Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8262 (1.01x) (76)
Testing collisions (high 26-40 bits) - Worst is 38 bits: 152/127 (1.19x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8250 (1.01x) (64)
Testing collisions (low 26-40 bits) - Worst is 35 bits: 1073/1023 (1.05x)
Testing distribution - Worst bias is the 20-bit window at bit 6 - 0.055%
Combination 0x0000001 Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8369 (1.02x) (183)
Testing collisions (high 26-40 bits) - Worst is 39 bits: 76/63 (1.19x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8195 (1.00x) (9)
Testing collisions (low 26-40 bits) - Worst is 34 bits: 2063/2047 (1.01x)
Testing distribution - Worst bias is the 20-bit window at bit 45 - 0.035%
Combination 0x800000000000000 Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 7992 (0.98x)
Testing collisions (high 26-40 bits) - Worst is 38 bits: 132/127 (1.03x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8161 (1.00x) (-25)
Testing collisions (low 26-40 bits) - Worst is 40 bits: 50/31 (1.56x)
Testing distribution - Worst bias is the 20-bit window at bit 54 - 0.063%
Combination 0x000000000000001 Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8394 (1.03x) (208)
Testing collisions (high 26-40 bits) - Worst is 39 bits: 74/63 (1.16x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8250 (1.01x) (64)
Testing collisions (low 26-40 bits) - Worst is 39 bits: 65/63 (1.02x)
Testing distribution - Worst bias is the 20-bit window at bit 26 - 0.033%
Combination 16-bytes [0-1] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8076 (0.99x) (-110)
Testing collisions (high 26-40 bits) - Worst is 40 bits: 42/31 (1.31x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8144 (0.99x) (-42)
Testing collisions (low 26-40 bits) - Worst is 39 bits: 67/63 (1.05x)
Testing distribution - Worst bias is the 20-bit window at bit 43 - 0.023%
Combination 16-bytes [0-last] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8220 (1.00x) (34)
Testing collisions (high 26-40 bits) - Worst is 40 bits: 37/31 (1.16x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8167 (1.00x) (-19)
Testing collisions (low 26-40 bits) - Worst is 38 bits: 138/127 (1.08x)
Testing distribution - Worst bias is the 20-bit window at bit 1 - 0.040%
Combination 32-bytes [0-1] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8427 (1.03x) (241)
Testing collisions (high 26-40 bits) - Worst is 39 bits: 70/63 (1.09x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 7954 (0.97x)
Testing collisions (low 26-40 bits) - Worst is 40 bits: 32/31 (1.00x)
Testing distribution - Worst bias is the 20-bit window at bit 23 - 0.038%
Combination 32-bytes [0-last] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8382 (1.02x) (196)
Testing collisions (high 26-40 bits) - Worst is 32 bits: 8382/8186 (1.02x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8112 (0.99x) (-74)
Testing collisions (low 26-40 bits) - Worst is 40 bits: 35/31 (1.09x)
Testing distribution - Worst bias is the 20-bit window at bit 23 - 0.048%
Combination 64-bytes [0-1] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8222 (1.00x) (36)
Testing collisions (high 26-40 bits) - Worst is 38 bits: 143/127 (1.12x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8332 (1.02x) (146)
Testing collisions (low 26-40 bits) - Worst is 38 bits: 143/127 (1.12x)
Testing distribution - Worst bias is the 20-bit window at bit 4 - 0.039%
Combination 64-bytes [0-last] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8211 (1.00x) (25)
Testing collisions (high 26-40 bits) - Worst is 37 bits: 289/255 (1.13x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8167 (1.00x) (-19)
Testing collisions (low 26-40 bits) - Worst is 26 bits: 503613/503108 (1.00x)
Testing distribution - Worst bias is the 20-bit window at bit 6 - 0.037%
Combination 128-bytes [0-1] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8218 (1.00x) (32)
Testing collisions (high 26-40 bits) - Worst is 32 bits: 8218/8186 (1.00x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8145 (0.99x) (-41)
Testing collisions (low 26-40 bits) - Worst is 37 bits: 266/255 (1.04x)
Testing distribution - Worst bias is the 20-bit window at bit 55 - 0.042%
Combination 128-bytes [0-last] Tests:
Keyset 'Combination' - up to 22 blocks from a set of 2 - 8388606 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 8186.7, actual 8153 (1.00x) (-33)
Testing collisions (high 26-40 bits) - Worst is 30 bits: 32794/32682 (1.00x)
Testing collisions (low 32-bit) - Expected 8186.7, actual 8183 (1.00x) (-3)
Testing collisions (low 26-40 bits) - Worst is 35 bits: 1106/1023 (1.08x)
Testing distribution - Worst bias is the 20-bit window at bit 38 - 0.040%
[[[ Keyset 'Window' Tests ]]]
Keyset 'Window' - 32-bit key, 25-bit window - 32 tests, 33554432 keys per test
Window at 0 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 1 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 2 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 3 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 4 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 5 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 6 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 7 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 8 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 9 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 10 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 11 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 12 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 13 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 14 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 15 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 16 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 17 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 18 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 19 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 20 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 21 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 22 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 23 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 24 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 25 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 26 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 27 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 28 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 29 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 30 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 31 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Window at 32 - Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
[[[ Keyset 'Cyclic' Tests ]]]
Keyset 'Cyclic' - 8 cycles of 8 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 114 (0.98x)
Testing collisions (high 23-34 bits) - Worst is 26 bits: 7523/7413 (1.01x)
Testing collisions (low 32-bit) - Expected 116.4, actual 93 (0.80x)
Testing collisions (low 23-34 bits) - Worst is 23 bits: 57599/57305 (1.01x)
Testing distribution - Worst bias is the 17-bit window at bit 31 - 0.122%
Keyset 'Cyclic' - 8 cycles of 9 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 108 (0.93x)
Testing collisions (high 23-34 bits) - Worst is 28 bits: 1872/1860 (1.01x)
Testing collisions (low 32-bit) - Expected 116.4, actual 102 (0.88x)
Testing collisions (low 23-34 bits) - Worst is 23 bits: 57340/57305 (1.00x)
Testing distribution - Worst bias is the 17-bit window at bit 55 - 0.093%
Keyset 'Cyclic' - 8 cycles of 10 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 97 (0.83x)
Testing collisions (high 23-34 bits) - Worst is 33 bits: 59/58 (1.01x)
Testing collisions (low 32-bit) - Expected 116.4, actual 118 (1.01x) (2)
Testing collisions (low 23-34 bits) - Worst is 31 bits: 247/232 (1.06x)
Testing distribution - Worst bias is the 17-bit window at bit 8 - 0.130%
Keyset 'Cyclic' - 8 cycles of 11 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 98 (0.84x)
Testing collisions (high 23-34 bits) - Worst is 28 bits: 1888/1860 (1.01x)
Testing collisions (low 32-bit) - Expected 116.4, actual 128 (1.10x) (12)
Testing collisions (low 23-34 bits) - Worst is 32 bits: 128/116 (1.10x)
Testing distribution - Worst bias is the 17-bit window at bit 45 - 0.112%
Keyset 'Cyclic' - 8 cycles of 12 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 120 (1.03x) (4)
Testing collisions (high 23-34 bits) - Worst is 34 bits: 36/29 (1.24x)
Testing collisions (low 32-bit) - Expected 116.4, actual 127 (1.09x) (11)
Testing collisions (low 23-34 bits) - Worst is 33 bits: 66/58 (1.13x)
Testing distribution - Worst bias is the 17-bit window at bit 57 - 0.167%
Keyset 'Cyclic' - 8 cycles of 16 bytes - 1000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 116.4, actual 114 (0.98x)
Testing collisions (high 23-34 bits) - Worst is 30 bits: 493/465 (1.06x)
Testing collisions (low 32-bit) - Expected 116.4, actual 113 (0.97x)
Testing collisions (low 23-34 bits) - Worst is 23 bits: 57431/57305 (1.00x)
Testing distribution - Worst bias is the 16-bit window at bit 57 - 0.124%
[[[ Keyset 'TwoBytes' Tests ]]]
Keyset 'TwoBytes' - up-to-4-byte keys, 652545 total keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 49.6, actual 57 (1.15x) (8)
Testing collisions (high 23-33 bits) - Worst is 33 bits: 30/24 (1.21x)
Testing collisions (low 32-bit) - Expected 49.6, actual 54 (1.09x) (5)
Testing collisions (low 23-33 bits) - Worst is 30 bits: 216/198 (1.09x)
Testing distribution - Worst bias is the 16-bit window at bit 56 - 0.092%
Keyset 'TwoBytes' - up-to-8-byte keys, 5471025 total keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 3483.1, actual 3377 (0.97x)
Testing collisions (high 26-39 bits) - Worst is 39 bits: 37/27 (1.36x)
Testing collisions (low 32-bit) - Expected 3483.1, actual 3477 (1.00x) (-6)
Testing collisions (low 26-39 bits) - Worst is 30 bits: 14083/13914 (1.01x)
Testing distribution - Worst bias is the 20-bit window at bit 41 - 0.078%
Keyset 'TwoBytes' - up-to-12-byte keys, 18616785 total keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 40289.5, actual 40423 (1.00x) (134)
Testing collisions (high 27-42 bits) - Worst is 40 bits: 161/157 (1.02x)
Testing collisions (low 32-bit) - Expected 40289.5, actual 40094 (1.00x) (-195)
Testing collisions (low 27-42 bits) - Worst is 29 bits: 319731/319083 (1.00x)
Testing distribution - Worst bias is the 20-bit window at bit 3 - 0.014%
Keyset 'TwoBytes' - up-to-16-byte keys, 44251425 total keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 227182.3, actual 228101 (1.00x) (919)
Testing collisions (high 29-45 bits) - Worst is 44 bits: 59/55 (1.06x)
Testing collisions (low 32-bit) - Expected 227182.3, actual 227675 (1.00x) (493)
Testing collisions (low 29-45 bits) - Worst is 30 bits: 901581/899454 (1.00x)
Testing distribution - Worst bias is the 19-bit window at bit 50 - 0.008%
Keyset 'TwoBytes' - up-to-20-byte keys, 86536545 total keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 865959.1, actual 865324 (1.00x) (-635)
Testing collisions (high 30-47 bits) - Worst is 46 bits: 68/53 (1.28x)
Testing collisions (low 32-bit) - Expected 865959.1, actual 866980 (1.00x) (1021)
Testing collisions (low 30-47 bits) - Worst is 46 bits: 56/53 (1.05x)
Testing distribution - Worst bias is the 20-bit window at bit 54 - 0.003%
[[[ Keyset 'Text' Tests ]]]
Keyset 'Text' - keys of form "FooXXXXBar" - 14776336 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 25389.0, actual 25527 (1.01x) (138)
Testing collisions (high 27-42 bits) - Worst is 40 bits: 103/99 (1.04x)
Testing collisions (low 32-bit) - Expected 25389.0, actual 25390 (1.00x) (1)
Testing collisions (low 27-42 bits) - Worst is 35 bits: 3253/3176 (1.02x)
Testing distribution - Worst bias is the 20-bit window at bit 40 - 0.016%
Keyset 'Text' - keys of form "FooBarXXXX" - 14776336 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 25389.0, actual 25206 (0.99x) (-183)
Testing collisions (high 27-42 bits) - Worst is 42 bits: 27/24 (1.09x)
Testing collisions (low 32-bit) - Expected 25389.0, actual 25290 (1.00x) (-99)
Testing collisions (low 27-42 bits) - Worst is 42 bits: 29/24 (1.17x)
Testing distribution - Worst bias is the 20-bit window at bit 12 - 0.029%
Keyset 'Text' - keys of form "XXXXFooBar" - 14776336 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 25389.0, actual 25358 (1.00x) (-31)
Testing collisions (high 27-42 bits) - Worst is 27 bits: 784654/784335 (1.00x)
Testing collisions (low 32-bit) - Expected 25389.0, actual 25382 (1.00x) (-7)
Testing collisions (low 27-42 bits) - Worst is 40 bits: 118/99 (1.19x)
Testing distribution - Worst bias is the 20-bit window at bit 15 - 0.016%
Keyset 'Words' - 4000000 random keys of len 6-16 from alnum charset
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 1862.1, actual 1829 (0.98x) (-33)
Testing collisions (high 25-38 bits) - Worst is 37 bits: 70/58 (1.20x)
Testing collisions (low 32-bit) - Expected 1862.1, actual 1864 (1.00x) (2)
Testing collisions (low 25-38 bits) - Worst is 38 bits: 30/29 (1.03x)
Testing distribution - Worst bias is the 19-bit window at bit 33 - 0.051%
Keyset 'Words' - 4000000 random keys of len 6-16 from password charset
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 1862.1, actual 1903 (1.02x) (41)
Testing collisions (high 25-38 bits) - Worst is 35 bits: 268/232 (1.15x)
Testing collisions (low 32-bit) - Expected 1862.1, actual 1838 (0.99x) (-24)
Testing collisions (low 25-38 bits) - Worst is 30 bits: 7490/7441 (1.01x)
Testing distribution - Worst bias is the 19-bit window at bit 3 - 0.065%
Keyset 'Words' - 104334 dict words
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 1.3, actual 1 (0.79x)
Testing collisions (high 20-28 bits) - Worst is 25 bits: 175/162 (1.08x)
Testing collisions (low 32-bit) - Expected 1.3, actual 0 (0.00x)
Testing collisions (low 20-28 bits) - Worst is 26 bits: 89/81 (1.10x)
Testing distribution - Worst bias is the 14-bit window at bit 44 - 0.415%
[[[ Keyset 'Zeroes' Tests ]]]
Keyset 'Zeroes' - 204800 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 4.9, actual 6 (1.23x) (2)
Testing collisions (high 21-29 bits) - Worst is 27 bits: 170/156 (1.09x)
Testing collisions (low 32-bit) - Expected 4.9, actual 2 (0.41x)
Testing collisions (low 21-29 bits) - Worst is 26 bits: 325/312 (1.04x)
Testing distribution - Worst bias is the 15-bit window at bit 14 - 0.277%
[[[ Keyset 'Seed' Tests ]]]
Keyset 'Seed' - 5000000 keys
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 2909.3, actual 2912 (1.00x) (3)
Testing collisions (high 26-39 bits) - Worst is 37 bits: 100/90 (1.10x)
Testing collisions (low 32-bit) - Expected 2909.3, actual 2906 (1.00x) (-3)
Testing collisions (low 26-39 bits) - Worst is 38 bits: 56/45 (1.23x)
Testing distribution - Worst bias is the 19-bit window at bit 25 - 0.030%
[[[ Keyset 'PerlinNoise' Tests ]]]
Testing 16777216 coordinates (L2) :
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 32725.4, actual 32920 (1.01x) (195)
Testing collisions (high 27-42 bits) - Worst is 36 bits: 2063/2047 (1.01x)
Testing collisions (low 32-bit) - Expected 32725.4, actual 32613 (1.00x) (-112)
Testing collisions (low 27-42 bits) - Worst is 42 bits: 39/31 (1.22x)
Testing AV variant, 128 count with 4 spacing, 4-12:
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 1116.2, actual 1128 (1.01x) (12)
Testing collisions (high 25-37 bits) - Worst is 37 bits: 41/34 (1.18x)
Testing collisions (low 32-bit) - Expected 1116.2, actual 1142 (1.02x) (26)
Testing collisions (low 25-37 bits) - Worst is 36 bits: 79/69 (1.13x)
[[[ Diff 'Differential' Tests ]]]
Testing 8303632 up-to-5-bit differentials in 64-bit keys -> 64 bit hashes.
1000 reps, 8303632000 total tests, expecting 0.00 random collisions..........
0 total collisions, of which 0 single collisions were ignored
Testing 11017632 up-to-4-bit differentials in 128-bit keys -> 64 bit hashes.
1000 reps, 11017632000 total tests, expecting 0.00 random collisions..........
0 total collisions, of which 0 single collisions were ignored
Testing 2796416 up-to-3-bit differentials in 256-bit keys -> 64 bit hashes.
1000 reps, 2796416000 total tests, expecting 0.00 random collisions..........
0 total collisions, of which 0 single collisions were ignored
[[[ DiffDist 'Differential Distribution' Tests ]]]
Testing bit 0
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 560 (1.09x) (49)
Testing collisions (high 24-36 bits) - Worst is 32 bits: 560/511 (1.09x)
Testing collisions (low 32-bit) - Expected 511.9, actual 507 (0.99x) (-4)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 36/31 (1.13x)
Testing distribution - Worst bias is the 18-bit window at bit 14 - 0.092%
Testing bit 1
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 522 (1.02x) (11)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 36/31 (1.13x)
Testing collisions (low 32-bit) - Expected 511.9, actual 499 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 72/63 (1.13x)
Testing distribution - Worst bias is the 18-bit window at bit 32 - 0.050%
Testing bit 2
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 533 (1.04x) (22)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 68/63 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 530 (1.04x) (19)
Testing collisions (low 24-36 bits) - Worst is 33 bits: 266/255 (1.04x)
Testing distribution - Worst bias is the 18-bit window at bit 9 - 0.090%
Testing bit 3
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 496 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 34 bits: 143/127 (1.12x)
Testing collisions (low 32-bit) - Expected 511.9, actual 560 (1.09x) (49)
Testing collisions (low 24-36 bits) - Worst is 32 bits: 560/511 (1.09x)
Testing distribution - Worst bias is the 18-bit window at bit 10 - 0.078%
Testing bit 4
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 538 (1.05x) (27)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 271/255 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 553 (1.08x) (42)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 42/31 (1.31x)
Testing distribution - Worst bias is the 18-bit window at bit 16 - 0.074%
Testing bit 5
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 555 (1.08x) (44)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 289/255 (1.13x)
Testing collisions (low 32-bit) - Expected 511.9, actual 508 (0.99x) (-3)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 136/127 (1.06x)
Testing distribution - Worst bias is the 18-bit window at bit 4 - 0.090%
Testing bit 6
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 498 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 26 bits: 32452/32429 (1.00x)
Testing collisions (low 32-bit) - Expected 511.9, actual 534 (1.04x) (23)
Testing collisions (low 24-36 bits) - Worst is 32 bits: 534/511 (1.04x)
Testing distribution - Worst bias is the 18-bit window at bit 58 - 0.071%
Testing bit 7
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 528 (1.03x) (17)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 271/255 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 563 (1.10x) (52)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 145/127 (1.13x)
Testing distribution - Worst bias is the 18-bit window at bit 5 - 0.073%
Testing bit 8
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 514 (1.00x) (3)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 71/63 (1.11x)
Testing collisions (low 32-bit) - Expected 511.9, actual 518 (1.01x) (7)
Testing collisions (low 24-36 bits) - Worst is 30 bits: 2090/2046 (1.02x)
Testing distribution - Worst bias is the 18-bit window at bit 38 - 0.058%
Testing bit 9
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 520 (1.02x) (9)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 76/63 (1.19x)
Testing collisions (low 32-bit) - Expected 511.9, actual 510 (1.00x) (-1)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 38/31 (1.19x)
Testing distribution - Worst bias is the 18-bit window at bit 32 - 0.077%
Testing bit 10
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 564 (1.10x) (53)
Testing collisions (high 24-36 bits) - Worst is 32 bits: 564/511 (1.10x)
Testing collisions (low 32-bit) - Expected 511.9, actual 512 (1.00x) (1)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 72/63 (1.13x)
Testing distribution - Worst bias is the 18-bit window at bit 1 - 0.100%
Testing bit 11
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 501 (0.98x)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 68/63 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 483 (0.94x)
Testing collisions (low 24-36 bits) - Worst is 27 bits: 16256/16298 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 39 - 0.098%
Testing bit 12
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 478 (0.93x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 46/31 (1.44x)
Testing collisions (low 32-bit) - Expected 511.9, actual 542 (1.06x) (31)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 71/63 (1.11x)
Testing distribution - Worst bias is the 17-bit window at bit 48 - 0.072%
Testing bit 13
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 509 (0.99x) (-2)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 36/31 (1.13x)
Testing collisions (low 32-bit) - Expected 511.9, actual 494 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 34/31 (1.06x)
Testing distribution - Worst bias is the 18-bit window at bit 58 - 0.083%
Testing bit 14
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 508 (0.99x) (-3)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 67/63 (1.05x)
Testing collisions (low 32-bit) - Expected 511.9, actual 497 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 28 bits: 8260/8170 (1.01x)
Testing distribution - Worst bias is the 18-bit window at bit 27 - 0.082%
Testing bit 15
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 548 (1.07x) (37)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 36/31 (1.13x)
Testing collisions (low 32-bit) - Expected 511.9, actual 543 (1.06x) (32)
Testing collisions (low 24-36 bits) - Worst is 33 bits: 272/255 (1.06x)
Testing distribution - Worst bias is the 18-bit window at bit 55 - 0.079%
Testing bit 16
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 538 (1.05x) (27)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 70/63 (1.09x)
Testing collisions (low 32-bit) - Expected 511.9, actual 502 (0.98x) (-9)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 67/63 (1.05x)
Testing distribution - Worst bias is the 18-bit window at bit 47 - 0.090%
Testing bit 17
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 495 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 36/31 (1.13x)
Testing collisions (low 32-bit) - Expected 511.9, actual 513 (1.00x) (2)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 33/31 (1.03x)
Testing distribution - Worst bias is the 18-bit window at bit 49 - 0.080%
Testing bit 18
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 492 (0.96x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 43/31 (1.34x)
Testing collisions (low 32-bit) - Expected 511.9, actual 475 (0.93x)
Testing collisions (low 24-36 bits) - Worst is 24 bits: 125962/125777 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 19 - 0.057%
Testing bit 19
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 517 (1.01x) (6)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 70/63 (1.09x)
Testing collisions (low 32-bit) - Expected 511.9, actual 507 (0.99x) (-4)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 43/31 (1.34x)
Testing distribution - Worst bias is the 18-bit window at bit 13 - 0.098%
Testing bit 20
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 496 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 39/31 (1.22x)
Testing collisions (low 32-bit) - Expected 511.9, actual 498 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 29 bits: 4107/4090 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 46 - 0.067%
Testing bit 21
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 516 (1.01x) (5)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 68/63 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 497 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 87/63 (1.36x)
Testing distribution - Worst bias is the 18-bit window at bit 49 - 0.049%
Testing bit 22
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 460 (0.90x)
Testing collisions (high 24-36 bits) - Worst is 24 bits: 126214/125777 (1.00x)
Testing collisions (low 32-bit) - Expected 511.9, actual 478 (0.93x)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 40/31 (1.25x)
Testing distribution - Worst bias is the 18-bit window at bit 50 - 0.083%
Testing bit 23
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 514 (1.00x) (3)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 34/31 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 513 (1.00x) (2)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 70/63 (1.09x)
Testing distribution - Worst bias is the 18-bit window at bit 14 - 0.054%
Testing bit 24
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 491 (0.96x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 39/31 (1.22x)
Testing collisions (low 32-bit) - Expected 511.9, actual 545 (1.06x) (34)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 83/63 (1.30x)
Testing distribution - Worst bias is the 18-bit window at bit 48 - 0.062%
Testing bit 25
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 508 (0.99x) (-3)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 42/31 (1.31x)
Testing collisions (low 32-bit) - Expected 511.9, actual 511 (1.00x)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 64/63 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 13 - 0.090%
Testing bit 26
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 537 (1.05x) (26)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 78/63 (1.22x)
Testing collisions (low 32-bit) - Expected 511.9, actual 493 (0.96x)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 136/127 (1.06x)
Testing distribution - Worst bias is the 18-bit window at bit 29 - 0.069%
Testing bit 27
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 516 (1.01x) (5)
Testing collisions (high 24-36 bits) - Worst is 31 bits: 1046/1023 (1.02x)
Testing collisions (low 32-bit) - Expected 511.9, actual 487 (0.95x)
Testing collisions (low 24-36 bits) - Worst is 24 bits: 125684/125777 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 51 - 0.100%
Testing bit 28
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 503 (0.98x) (-8)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 262/255 (1.02x)
Testing collisions (low 32-bit) - Expected 511.9, actual 515 (1.01x) (4)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 68/63 (1.06x)
Testing distribution - Worst bias is the 18-bit window at bit 17 - 0.068%
Testing bit 29
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 495 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 264/255 (1.03x)
Testing collisions (low 32-bit) - Expected 511.9, actual 515 (1.01x) (4)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 75/63 (1.17x)
Testing distribution - Worst bias is the 18-bit window at bit 57 - 0.064%
Testing bit 30
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 527 (1.03x) (16)
Testing collisions (high 24-36 bits) - Worst is 32 bits: 527/511 (1.03x)
Testing collisions (low 32-bit) - Expected 511.9, actual 495 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 29 bits: 4120/4090 (1.01x)
Testing distribution - Worst bias is the 18-bit window at bit 58 - 0.078%
Testing bit 31
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 540 (1.05x) (29)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 287/255 (1.12x)
Testing collisions (low 32-bit) - Expected 511.9, actual 511 (1.00x)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 138/127 (1.08x)
Testing distribution - Worst bias is the 18-bit window at bit 46 - 0.100%
Testing bit 32
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 499 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 37/31 (1.16x)
Testing collisions (low 32-bit) - Expected 511.9, actual 543 (1.06x) (32)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 151/127 (1.18x)
Testing distribution - Worst bias is the 18-bit window at bit 58 - 0.063%
Testing bit 33
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 487 (0.95x)
Testing collisions (high 24-36 bits) - Worst is 29 bits: 4108/4090 (1.00x)
Testing collisions (low 32-bit) - Expected 511.9, actual 535 (1.05x) (24)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 67/63 (1.05x)
Testing distribution - Worst bias is the 18-bit window at bit 38 - 0.083%
Testing bit 34
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 521 (1.02x) (10)
Testing collisions (high 24-36 bits) - Worst is 34 bits: 135/127 (1.05x)
Testing collisions (low 32-bit) - Expected 511.9, actual 507 (0.99x) (-4)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 135/127 (1.05x)
Testing distribution - Worst bias is the 18-bit window at bit 27 - 0.094%
Testing bit 35
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 498 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 35/31 (1.09x)
Testing collisions (low 32-bit) - Expected 511.9, actual 494 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 29 bits: 4144/4090 (1.01x)
Testing distribution - Worst bias is the 18-bit window at bit 30 - 0.074%
Testing bit 36
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 497 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 34/31 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 481 (0.94x)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 66/63 (1.03x)
Testing distribution - Worst bias is the 18-bit window at bit 51 - 0.097%
Testing bit 37
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 509 (0.99x) (-2)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 43/31 (1.34x)
Testing collisions (low 32-bit) - Expected 511.9, actual 480 (0.94x)
Testing collisions (low 24-36 bits) - Worst is 27 bits: 16418/16298 (1.01x)
Testing distribution - Worst bias is the 18-bit window at bit 21 - 0.083%
Testing bit 38
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 502 (0.98x) (-9)
Testing collisions (high 24-36 bits) - Worst is 27 bits: 16436/16298 (1.01x)
Testing collisions (low 32-bit) - Expected 511.9, actual 509 (0.99x) (-2)
Testing collisions (low 24-36 bits) - Worst is 30 bits: 2042/2046 (1.00x)
Testing distribution - Worst bias is the 18-bit window at bit 52 - 0.071%
Testing bit 39
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 529 (1.03x) (18)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 38/31 (1.19x)
Testing collisions (low 32-bit) - Expected 511.9, actual 528 (1.03x) (17)
Testing collisions (low 24-36 bits) - Worst is 32 bits: 528/511 (1.03x)
Testing distribution - Worst bias is the 18-bit window at bit 18 - 0.084%
Testing bit 40
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 496 (0.97x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 43/31 (1.34x)
Testing collisions (low 32-bit) - Expected 511.9, actual 551 (1.08x) (40)
Testing collisions (low 24-36 bits) - Worst is 32 bits: 551/511 (1.08x)
Testing distribution - Worst bias is the 18-bit window at bit 61 - 0.070%
Testing bit 41
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 521 (1.02x) (10)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 37/31 (1.16x)
Testing collisions (low 32-bit) - Expected 511.9, actual 500 (0.98x)
Testing collisions (low 24-36 bits) - Worst is 31 bits: 1046/1023 (1.02x)
Testing distribution - Worst bias is the 18-bit window at bit 27 - 0.069%
Testing bit 42
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 505 (0.99x) (-6)
Testing collisions (high 24-36 bits) - Worst is 24 bits: 126029/125777 (1.00x)
Testing collisions (low 32-bit) - Expected 511.9, actual 524 (1.02x) (13)
Testing collisions (low 24-36 bits) - Worst is 32 bits: 524/511 (1.02x)
Testing distribution - Worst bias is the 18-bit window at bit 15 - 0.093%
Testing bit 43
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 546 (1.07x) (35)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 41/31 (1.28x)
Testing collisions (low 32-bit) - Expected 511.9, actual 515 (1.01x) (4)
Testing collisions (low 24-36 bits) - Worst is 33 bits: 270/255 (1.05x)
Testing distribution - Worst bias is the 18-bit window at bit 31 - 0.090%
Testing bit 44
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 509 (0.99x) (-2)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 269/255 (1.05x)
Testing collisions (low 32-bit) - Expected 511.9, actual 510 (1.00x) (-1)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 71/63 (1.11x)
Testing distribution - Worst bias is the 18-bit window at bit 52 - 0.075%
Testing bit 45
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 504 (0.98x) (-7)
Testing collisions (high 24-36 bits) - Worst is 30 bits: 2070/2046 (1.01x)
Testing collisions (low 32-bit) - Expected 511.9, actual 484 (0.95x)
Testing collisions (low 24-36 bits) - Worst is 29 bits: 4125/4090 (1.01x)
Testing distribution - Worst bias is the 18-bit window at bit 4 - 0.058%
Testing bit 46
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 489 (0.96x)
Testing collisions (high 24-36 bits) - Worst is 35 bits: 74/63 (1.16x)
Testing collisions (low 32-bit) - Expected 511.9, actual 558 (1.09x) (47)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 148/127 (1.16x)
Testing distribution - Worst bias is the 18-bit window at bit 11 - 0.085%
Testing bit 47
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 511 (1.00x)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 40/31 (1.25x)
Testing collisions (low 32-bit) - Expected 511.9, actual 510 (1.00x) (-1)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 43/31 (1.34x)
Testing distribution - Worst bias is the 18-bit window at bit 23 - 0.077%
Testing bit 48
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 532 (1.04x) (21)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 35/31 (1.09x)
Testing collisions (low 32-bit) - Expected 511.9, actual 541 (1.06x) (30)
Testing collisions (low 24-36 bits) - Worst is 35 bits: 73/63 (1.14x)
Testing distribution - Worst bias is the 18-bit window at bit 41 - 0.085%
Testing bit 49
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 524 (1.02x) (13)
Testing collisions (high 24-36 bits) - Worst is 33 bits: 264/255 (1.03x)
Testing collisions (low 32-bit) - Expected 511.9, actual 494 (0.97x)
Testing collisions (low 24-36 bits) - Worst is 34 bits: 155/127 (1.21x)
Testing distribution - Worst bias is the 18-bit window at bit 7 - 0.074%
Testing bit 50
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 559 (1.09x) (48)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 40/31 (1.25x)
Testing collisions (low 32-bit) - Expected 511.9, actual 492 (0.96x)
Testing collisions (low 24-36 bits) - Worst is 36 bits: 41/31 (1.28x)
Testing distribution - Worst bias is the 18-bit window at bit 41 - 0.104%
Testing bit 51
Testing collisions ( 64-bit) - Expected 0.0, actual 0 (0.00x)
Testing collisions (high 32-bit) - Expected 511.9, actual 533 (1.04x) (22)
Testing collisions (high 24-36 bits) - Worst is 36 bits: 34/31 (1.06x)
Testing collisions (low 32-bit) - Expected 511.9, actual 493 (0.96x)