AlexanderSaydakov commented on code in PR #448:
URL: https://github.com/apache/datasketches-java/pull/448#discussion_r1213791700
##########
src/main/java/org/apache/datasketches/kll/KllHelper.java:
##########
@@ -237,10 +244,11 @@ static void compressWhileUpdatingSketch(final KllSketch
sketch) {
}
for (int lvl = 0; lvl < level; lvl++) {
newIndex = myLevelsArr[lvl] + halfAdjPop; //adjust boundary
- sketch.setLevelsArrayAt(lvl, newIndex);
+ fltSk.setLevelsArrayAt(lvl, newIndex);
}
- sketch.setFloatItemsArray(myFloatItemsArr);
+ fltSk.setFloatItemsArray(myFloatItemsArr);
}
+ //TODO add items
Review Comment:
what does this mean?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]