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

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 821d0e50 Automatic Site Publish by Buildbot
821d0e50 is described below

commit 821d0e50a9a4e8eb8f317beb6f9327a360d1d1ee
Author: buildbot <[email protected]>
AuthorDate: Wed Jun 8 16:08:42 2022 +0000

    Automatic Site Publish by Buildbot
---
 output/docs/Theta/ThetaJavaExample.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/output/docs/Theta/ThetaJavaExample.html 
b/output/docs/Theta/ThetaJavaExample.html
index e1c13653..3f7c703c 100644
--- a/output/docs/Theta/ThetaJavaExample.html
+++ b/output/docs/Theta/ThetaJavaExample.html
@@ -556,8 +556,8 @@ import org.apache.datasketches.theta.SetOperation;
   Sketch sketch2 = Sketches.wrapSketch(Memory.wrap(bytes2));
 
   Union union = SetOperation.builder().buildUnion();
-  union.update(sketch1);
-  union.update(sketch2);
+  union.union(sketch1);
+  union.union(sketch2);
   Sketch unionResult = union.getResult();
 
   // debug summary of the union result sketch
@@ -568,8 +568,8 @@ import org.apache.datasketches.theta.SetOperation;
   System.out.println("Union unique count upper bound 95% confidence: " + 
unionResult.getUpperBound(2));
 
   Intersection intersection = SetOperation.builder().buildIntersection();
-  intersection.update(sketch1);
-  intersection.update(sketch2);
+  intersection.intersection(sketch1);
+  intersection.intersection(sketch2);
   Sketch intersectionResult = intersection.getResult();
 
   // debug summary of the intersection result sketch


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to