You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2020/10/17 00:11:26 UTC

[incubator-datasketches-characterization] branch master updated: Add setCompatible() to configureSketch().

This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-characterization.git


The following commit(s) were added to refs/heads/master by this push:
     new b2f4e61  Add setCompatible() to configureSketch().
b2f4e61 is described below

commit b2f4e612afb54f66e54aa4c3ab4e055d8c1a22f3
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Oct 16 17:10:31 2020 -0700

    Add setCompatible() to configureSketch().
---
 .../characterization/quantiles/ReqSketchAccuracyProfile.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/datasketches/characterization/quantiles/ReqSketchAccuracyProfile.java b/src/test/java/org/apache/datasketches/characterization/quantiles/ReqSketchAccuracyProfile.java
index 5ecbc98..da627e9 100644
--- a/src/test/java/org/apache/datasketches/characterization/quantiles/ReqSketchAccuracyProfile.java
+++ b/src/test/java/org/apache/datasketches/characterization/quantiles/ReqSketchAccuracyProfile.java
@@ -163,7 +163,7 @@ public class ReqSketchAccuracyProfile implements JobProfile {
 
   void configureSketch() {
     final ReqSketchBuilder bldr = ReqSketch.builder();
-    bldr.setK(K).setHighRankAccuracy(hra);
+    bldr.setK(K).setHighRankAccuracy(hra).setCompatible(compatible);
     if (reqDebugImpl != null) { bldr.setReqDebug(reqDebugImpl); }
     sk = bldr.build();
     sk.setCriterion(criterion);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org