Rewrote the EXAMINE command.
[pspp-builds.git] / src / math / order-stats.h
index cea50ed80d14b34976beccc3055d656fdb8ce2f8..fc5889504a6c1360d1026047e68760fefa2f70d5 100644 (file)
@@ -29,11 +29,17 @@ struct variable;
 struct k
 {
   double tc;
+
   double cc;
+
   double cc_p1;
+
   double c;
+
   double c_p1;
+
   double y;
+
   double y_p1;
 };
 
@@ -43,18 +49,18 @@ struct order_stats
   struct statistic parent;
   int n_k;
   struct k *k;
-
-  double cc;
 };
 
-enum mv_class;
 
-void order_stats_dump (const struct order_stats *os);
+
+void dump_ptile_k1 (const struct order_stats *ptl);
+
+void dump_ptile_k2 (const struct order_stats *ptl);
+
 
 void order_stats_accumulate (struct order_stats **ptl, size_t nos,
-                            struct casereader *reader,
-                            const struct variable *wv,
-                            const struct variable *var,
-                            enum mv_class exclude);
+                        struct casereader *reader,
+                        const struct variable *wv,
+                        const struct variable *var);
 
 #endif