apache / datasketches-java

A software library of stochastic streaming algorithms, a.k.a. sketches.
https://datasketches.apache.org
Apache License 2.0
893 stars 209 forks source link

Removed duplicate req sorted view #541

Closed leerho closed 5 months ago

leerho commented 6 months ago

The Floats Sorted View created by the ReqSketch is now the same class as the Floats Sorted View created by the KllFloatsSketch.

This completes the goal of removing the duplication across 5 quantile sketches, so now we have only 3 different SV classes, one each for floats, doubles, and items. This also has simplified and/or removed some duplicate testing classes as well.

PR #540 must be deployed before this one.