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 2022/08/12 01:40:46 UTC

[datasketches-java] branch Changes_to_kll updated (f3a61191 -> 1c524d9a)

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

leerho pushed a change to branch Changes_to_kll
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git


    from f3a61191 CrossCheckQuantilesTest is now working the way I want.
     add 1c524d9a Added interfaces for SortedViews and SortedViewIterators.

No new revisions were added by this update.

Summary of changes:
 .../org/apache/datasketches/DoublesSortedView.java |  77 ++++++++++++
 ...ge-info.java => DoublesSortedViewIterator.java} |  16 ++-
 .../org/apache/datasketches/FloatsSortedView.java  |  76 ++++++++++++
 ...age-info.java => FloatsSortedViewIterator.java} |  16 ++-
 .../org/apache/datasketches/GenericSortedView.java |  77 ++++++++++++
 ...ge-info.java => GenericSortedViewIterator.java} |  17 ++-
 .../datasketches/QuantileSearchCriteria.java       |  66 +++++-----
 .../java/org/apache/datasketches/SortedView.java   |  47 ++++++++
 .../apache/datasketches/SortedViewIterator.java    |  85 +++++++++++++
 .../apache/datasketches/kll/KllDoublesSketch.java  |  42 +++----
 .../kll/KllDoublesSketchSortedView.java            | 133 ++++++++-------------
 .../kll/KllDoublesSketchSortedViewIterator.java    |  82 ++++---------
 .../apache/datasketches/kll/KllFloatsSketch.java   |  42 +++----
 .../kll/KllFloatsSketchSortedView.java             | 131 +++++++-------------
 .../kll/KllFloatsSketchSortedViewIterator.java     |  80 ++++---------
 .../org/apache/datasketches/req/BaseReqSketch.java |  29 ++---
 .../org/apache/datasketches/req/FloatBuffer.java   |   6 +-
 .../org/apache/datasketches/req/ReqSketch.java     | 107 ++++-------------
 .../datasketches/req/ReqSketchSortedView.java      |  89 ++++++++------
 .../req/ReqSketchSortedViewIterator.java           |  82 ++++---------
 20 files changed, 728 insertions(+), 572 deletions(-)
 create mode 100644 src/main/java/org/apache/datasketches/DoublesSortedView.java
 copy src/main/java/org/apache/datasketches/{package-info.java => DoublesSortedViewIterator.java} (75%)
 create mode 100644 src/main/java/org/apache/datasketches/FloatsSortedView.java
 copy src/main/java/org/apache/datasketches/{package-info.java => FloatsSortedViewIterator.java} (75%)
 create mode 100644 src/main/java/org/apache/datasketches/GenericSortedView.java
 copy src/main/java/org/apache/datasketches/{package-info.java => GenericSortedViewIterator.java} (72%)
 create mode 100644 src/main/java/org/apache/datasketches/SortedView.java
 create mode 100644 src/main/java/org/apache/datasketches/SortedViewIterator.java


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