mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Allow extension of SlidingPercentile
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=144240101
This commit is contained in:
parent
cd42434719
commit
5752524442
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ import java.util.Comparator;
|
||||||
* @see <a href="http://en.wikipedia.org/wiki/Moving_average">Wiki: Moving average</a>
|
* @see <a href="http://en.wikipedia.org/wiki/Moving_average">Wiki: Moving average</a>
|
||||||
* @see <a href="http://en.wikipedia.org/wiki/Selection_algorithm">Wiki: Selection algorithm</a>
|
* @see <a href="http://en.wikipedia.org/wiki/Selection_algorithm">Wiki: Selection algorithm</a>
|
||||||
*/
|
*/
|
||||||
public final class SlidingPercentile {
|
public class SlidingPercentile {
|
||||||
|
|
||||||
// Orderings.
|
// Orderings.
|
||||||
private static final Comparator<Sample> INDEX_COMPARATOR = new Comparator<Sample>() {
|
private static final Comparator<Sample> INDEX_COMPARATOR = new Comparator<Sample>() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue