X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fhistogram.c;fp=src%2Fmath%2Fhistogram.c;h=264b0785351b99c9da8c3397294a0ef1bb1f716f;hb=b9f712f8911170fcc049c6d7d83b6887185de4dd;hp=8aaa16f9e0a684bca8333fee51d6c6874319a69b;hpb=2a76184b55a8c229adc0b31d3436d29076de0ef8;p=pspp diff --git a/src/math/histogram.c b/src/math/histogram.c index 8aaa16f9e0..264b078535 100644 --- a/src/math/histogram.c +++ b/src/math/histogram.c @@ -37,16 +37,7 @@ void histogram_add (struct histogram *h, double y, double c) { - struct statistic *stat = &h->parent; - stat->accumulate (stat, NULL, c, 0, y); -} - -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_accumulate (hist->gsl_hist, y, c); + gsl_histogram_accumulate (h->gsl_hist, y, c); } static void @@ -177,7 +168,6 @@ histogram_create (double bin_width_in, double min, double max) } stat = &h->parent; - stat->accumulate = acc; stat->destroy = destroy; return h;