File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
src/main/java/org/elasticsearch/search/aggregations/metrics/percentile/providers/qdigest Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ package org .elasticsearch .search .aggregations .metrics .percentile .providers .qdigest ;
2
+
3
+ public interface IQuantileEstimator
4
+ {
5
+ void offer (long value );
6
+
7
+ long getQuantile (double q );
8
+ }
Original file line number Diff line number Diff line change 1
1
package org .elasticsearch .search .aggregations .metrics .percentile .providers .qdigest ;
2
2
3
- import com .clearspring .analytics .stream .quantile .IQuantileEstimator ;
4
3
import it .unimi .dsi .fastutil .Hash ;
5
4
import it .unimi .dsi .fastutil .longs .Long2LongOpenHashMap ;
6
5
import it .unimi .dsi .fastutil .longs .LongArrayFIFOQueue ;
7
-
8
-
9
6
import org .apache .lucene .util .RamUsageEstimator ;
10
7
11
8
import java .io .ByteArrayInputStream ;
You can’t perform that action at this time.
0 commit comments