From d2b2641dcadcdceede8be06df48739b11828b313 Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Tue, 16 Feb 2016 10:16:22 +0100 Subject: [PATCH] Revert "histogram - fixed missing cases which have the maximum value" This reverts commit ca4012bcf0f8790ceb8539b55bbc296d0802d5d7. --- src/math/histogram.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/math/histogram.c b/src/math/histogram.c index 3f31ece4b1..60adaa92d1 100644 --- a/src/math/histogram.c +++ b/src/math/histogram.c @@ -45,17 +45,8 @@ static void acc (struct statistic *s, const struct ccase *cx UNUSED, double c, double cc UNUSED, double y) { struct histogram *hist = UP_CAST (s, struct histogram, parent); - gsl_histogram *gslh = hist->gsl_hist; - /* Include cases which are just on the boundary */ - if (y == gsl_histogram_max (gslh)) - { - double lower, upper; - gsl_histogram_get_range (gslh, gsl_histogram_bins (gslh)-1, &lower, &upper); - gsl_histogram_accumulate (gslh, lower + (upper - lower)/2.0, c); - } - else - gsl_histogram_accumulate (hist->gsl_hist, y, c); + gsl_histogram_accumulate (hist->gsl_hist, y, c); } static void -- 2.30.2