Bug 789371 - fix min/max/n_buckets for boolean and flag histograms; r=taras

This commit is contained in:
Nathan Froyd 2012-09-11 04:33:16 -04:00
Родитель 93a9709b1f
Коммит 2e7cb9d270
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -27,8 +27,6 @@ def check_numeric_limits(dmin, dmax, n_buckets):
def linear_buckets(dmin, dmax, n_buckets):
check_numeric_limits(dmin, dmax, n_buckets)
if n_buckets == 2:
return [0, 1, 2]
ret_array = [0] * n_buckets
dmin = float(dmin)
dmax = float(dmax)
@ -176,7 +174,7 @@ associated with the histogram. Returns None if no guarding is necessary."""
@staticmethod
def boolean_flag_bucket_parameters(definition):
return (0, 1, 2)
return (1, 2, 3)
@staticmethod
def linear_bucket_parameters(definition):