@@ -60,7 +60,7 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
6060 hllSketch .couponUpdate (HllUtil .pair (7 , 15 )); //mock extreme values
6161 hllSketch .couponUpdate (HllUtil .pair (8 , 15 ));
6262 hllSketch .couponUpdate (HllUtil .pair (9 , 15 ));
63- //println(hllSketch.toString(true, true, true, true)); //
63+ //println(hllSketch.toString(true, true, true, true));
6464 DirectHllArray dha = (DirectHllArray ) hllSketch .hllSketchImpl ;
6565 assertEquals (dha .getAuxHashMap ().getLgAuxArrInts (), 2 );
6666 assertTrue (hllSketch .isMemory ());
@@ -78,14 +78,14 @@ public void checkGrow() { //It is very rare, but this forces an HLL_4 to exceed
7878 byteArray = hllSketch .toUpdatableByteArray ();
7979 WritableMemory wmem2 = WritableMemory .writableWrap (byteArray );
8080 hllSketch2 = HllSketch .writableWrap (wmem2 );
81- //println(hllSketch2.toString(true, true, true, true)); //
81+ //println(hllSketch2.toString(true, true, true, true));
8282 DirectHllArray dha2 = (DirectHllArray ) hllSketch2 .hllSketchImpl ;
8383 assertEquals (dha2 .getAuxHashMap ().getLgAuxArrInts (), 2 );
8484 assertEquals (dha2 .getAuxHashMap ().getAuxCount (), 3 );
8585
8686 //Check grow to on-heap
8787 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));
8989 dha = (DirectHllArray ) hllSketch .hllSketchImpl ;
9090 assertEquals (dha .getAuxHashMap ().getLgAuxArrInts (), 3 );
9191 assertEquals (dha .getAuxHashMap ().getAuxCount (), 4 );
0 commit comments