X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Forder-stats.h;h=07da284aa26af9faa95df9872d00163092471686;hb=cc57a28ef6796ae9a64ef80d453f72126956d49d;hp=fc5889504a6c1360d1026047e68760fefa2f70d5;hpb=bb611ecc6f1c33a0a7c691785927c545d18696f6;p=pspp-builds.git diff --git a/src/math/order-stats.h b/src/math/order-stats.h index fc588950..07da284a 100644 --- a/src/math/order-stats.h +++ b/src/math/order-stats.h @@ -18,6 +18,7 @@ #define __ORDER_STATS_H__ #include +#include #include struct casereader; @@ -29,17 +30,11 @@ struct variable; struct k { double tc; - double cc; - double cc_p1; - double c; - double c_p1; - double y; - double y_p1; }; @@ -49,18 +44,18 @@ struct order_stats struct statistic parent; int n_k; struct k *k; -}; - - -void dump_ptile_k1 (const struct order_stats *ptl); + double cc; +}; -void dump_ptile_k2 (const struct order_stats *ptl); +enum mv_class; +void order_stats_dump (const struct order_stats *os); void order_stats_accumulate (struct order_stats **ptl, size_t nos, - struct casereader *reader, - const struct variable *wv, - const struct variable *var); + struct casereader *reader, + const struct variable *wv, + const struct variable *var, + enum mv_class exclude); #endif