X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fbox-whisker.c;h=de4124efe16c5beb799c7b5d0b2af42743ff79d7;hb=1abf50d4363f70d1fb2e07dafbac0761386ac20e;hp=3712235e0ec747c06b80b4e09b5c0cfaf997d638;hpb=b46b794dfb9f0758aafec83f50993d1930894099;p=pspp-builds.git diff --git a/src/math/box-whisker.c b/src/math/box-whisker.c index 3712235e..de4124ef 100644 --- a/src/math/box-whisker.c +++ b/src/math/box-whisker.c @@ -20,6 +20,7 @@ #include "tukey-hinges.h" #include #include +#include #include #include #include @@ -30,8 +31,8 @@ static void destroy (struct statistic *s) { - struct order_stats *os = (struct order_stats *) s; - struct box_whisker *bw = (struct box_whisker *) s; + struct box_whisker *bw = UP_CAST (s, struct box_whisker, parent.parent); + struct order_stats *os = &bw->parent; struct ll *ll; for (ll = ll_head (&bw->outliers); ll != ll_null (&bw->outliers); ) @@ -53,7 +54,7 @@ static void acc (struct statistic *s, const struct ccase *cx, double c UNUSED, double cc UNUSED, double y) { - struct box_whisker *bw = (struct box_whisker *) s; + struct box_whisker *bw = UP_CAST (s, struct box_whisker, parent.parent); bool extreme; struct outlier *o; @@ -115,8 +116,8 @@ box_whisker_create (const struct tukey_hinges *th, const struct variable *id_var, size_t casenumber_idx) { struct box_whisker *w = xzalloc (sizeof (*w)); - struct order_stats *os = (struct order_stats *) w; - struct statistic *stat = (struct statistic *) w; + struct order_stats *os = &w->parent; + struct statistic *stat = &os->parent; os->n_k = 0;