summaryrefslogtreecommitdiff
path: root/histogram.py
diff options
context:
space:
mode:
Diffstat (limited to 'histogram.py')
-rw-r--r--histogram.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/histogram.py b/histogram.py
index 9c07df9..dd47319 100644
--- a/histogram.py
+++ b/histogram.py
@@ -32,7 +32,7 @@ class SimpleHistogram(Generic[T]):
NEGATIVE_INFINITY = -math.inf
def __init__(self, buckets: List[Tuple[Bound, Bound]]):
- from math_utils import RunningMedian
+ from math_utils import NumericPopulation
self.buckets: Dict[Tuple[Bound, Bound], Count] = {}
for start_end in buckets:
@@ -40,7 +40,7 @@ class SimpleHistogram(Generic[T]):
raise Exception("Buckets overlap?!")
self.buckets[start_end] = 0
self.sigma: float = 0.0
- self.stats: RunningMedian = RunningMedian()
+ self.stats: NumericPopulation = NumericPopulation()
self.maximum: Optional[T] = None
self.minimum: Optional[T] = None
self.count: Count = 0