@@ -60,7 +60,7 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
60
60
hllSketch .couponUpdate (HllUtil .pair (7 , 15 )); //mock extreme values
61
61
hllSketch .couponUpdate (HllUtil .pair (8 , 15 ));
62
62
hllSketch .couponUpdate (HllUtil .pair (9 , 15 ));
63
- //println(hllSketch.toString(true, true, true, true)); //
63
+ //println(hllSketch.toString(true, true, true, true));
64
64
DirectHllArray dha = (DirectHllArray ) hllSketch .hllSketchImpl ;
65
65
assertEquals (dha .getAuxHashMap ().getLgAuxArrInts (), 2 );
66
66
assertTrue (hllSketch .isMemory ());
@@ -78,14 +78,14 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
78
78
byteArray = hllSketch .toUpdatableByteArray ();
79
79
WritableMemory wmem2 = WritableMemory .writableWrap (byteArray );
80
80
hllSketch2 = HllSketch .writableWrap (wmem2 );
81
- //println(hllSketch2.toString(true, true, true, true)); //
81
+ //println(hllSketch2.toString(true, true, true, true));
82
82
DirectHllArray dha2 = (DirectHllArray ) hllSketch2 .hllSketchImpl ;
83
83
assertEquals (dha2 .getAuxHashMap ().getLgAuxArrInts (), 2 );
84
84
assertEquals (dha2 .getAuxHashMap ().getAuxCount (), 3 );
85
85
86
86
//Check grow to on-heap
87
87
hllSketch .couponUpdate (HllUtil .pair (10 , 15 )); //puts it over the edge, must grow
88
- //println(hllSketch.toString(true, true, true, true)); //
88
+ //println(hllSketch.toString(true, true, true, true));
89
89
dha = (DirectHllArray ) hllSketch .hllSketchImpl ;
90
90
assertEquals (dha .getAuxHashMap ().getLgAuxArrInts (), 3 );
91
91
assertEquals (dha .getAuxHashMap ().getAuxCount (), 4 );
0 commit comments