We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e18aff commit 2c21579Copy full SHA for 2c21579
1 file changed
src/main/java/com/yahoo/sketches/hll/HllSketch.java
@@ -163,9 +163,13 @@ protected void setUpdateCallback(Fields.UpdateCallback updateCallback)
163
{
164
this.updateCallback = updateCallback;
165
}
166
-
167
- /** Helper methods that are potential extension points for children **/
168
+
+ //Helper methods that are potential extension points for children
169
+ /**
170
+ * The sum of the inverse powers of 2
171
+ * @return the sum of the inverse powers of 2
172
+ */
173
protected double inversePowerOf2Sum() {
174
return HllUtils.computeInvPow2Sum(numBuckets(), fields.getBucketIterator());
175
0 commit comments