Fix missing @clicksequence problem with older Texinfo versions.
[pspp-builds.git] / src / math / order-stats.h
index fc5889504a6c1360d1026047e68760fefa2f70d5..07da284aa26af9faa95df9872d00163092471686 100644 (file)
@@ -18,6 +18,7 @@
 #define __ORDER_STATS_H__
 
 #include <stddef.h>
+#include <data/missing-values.h>
 #include <math/statistic.h>
 
 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