This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HighDynamicRangeQuantile { | |
private final long[] counts; | |
private double minimum = Double.POSITIVE_INFINITY; | |
private double maximum = Double.NEGATIVE_INFINITY; | |
private long underFlowCount = 0; | |
private long overFlowCount = 0; | |
private final double factor; | |
private final double offset; | |
private final double minExpectedQuantileValue; | |