This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch ReqExperiment in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit 1a61267c882abd747fcf4d986df4270ee218557c Author: Lee Rhodes <[email protected]> AuthorDate: Sun Jan 10 15:40:55 2021 -0800 set lazy compression = false --- 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 81039ac..70059da 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 byte INIT_NUMBER_OF_SECTIONS = 3; // TODO: restore to final after eval static int MIN_K = 4; // TODO: restore to final after eval static float NOM_CAP_MULT = 2f; // TODO: restore to final after eval - private static boolean LAZY_COMPRESSION = true; //TODO: restore to final after eval + private static boolean LAZY_COMPRESSION = false; //TODO: restore to final after eval private static double relRseFactor; //TODO: restore final: = sqrt(0.0512 / INIT_NUMBER_OF_SECTIONS); private static final double fixRseFactor = .06; //finals --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
