This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch Adjust_fixRseFactor in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit a12a1557717996714a7c4183c8c21d5d0a46b3d9 Author: Lee Rhodes <[email protected]> AuthorDate: Wed Jan 20 13:11:48 2021 -0800 Change "fixRseFactor" to .084. Final change for release. --- src/main/java/org/apache/datasketches/req/ReqSketch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/datasketches/req/ReqSketch.java b/src/main/java/org/apache/datasketches/req/ReqSketch.java index 55f4622..9b3d65e 100644 --- a/src/main/java/org/apache/datasketches/req/ReqSketch.java +++ b/src/main/java/org/apache/datasketches/req/ReqSketch.java @@ -77,7 +77,7 @@ public class ReqSketch extends BaseReqSketch { static final byte NOM_CAP_MULT = 2; //These two factors are used by upper and lower bounds private static final double relRseFactor = Math.sqrt(0.0512 / INIT_NUMBER_OF_SECTIONS); - private static final double fixRseFactor = .06; + private static final double fixRseFactor = .084; //finals private final int k; //default is 12 (1% @ 95% Conf) private final boolean hra; //default is true --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
