Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / math / levene.h
index ba7dea5d39864dc1e4ba2bf9b029be0b51e48cbe..40ed52ce0ed493a6027f7435eda264ed8e54f03f 100644 (file)
@@ -2,7 +2,6 @@
    Computes Levene test  statistic.
 
    Copyright (C) 2004 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -22,9 +21,9 @@
 #if !levene_h
 #define levene_h 1
 
-
+#include <data/casereader.h>
+#include <data/missing-values.h>
 #include <data/variable.h>
-#include <data/casefile.h>
 
 /* Calculate the Levene statistic 
 
@@ -40,9 +39,10 @@ The dependent variables :   v_dep;
 struct dictionary ;
 struct casefilter ;
 
-void  levene(const struct dictionary *dict, const struct casefile *cf, 
-            struct variable *v_indep, size_t n_dep, struct variable **v_dep,
-            struct casefilter *filter);
+void  levene(const struct dictionary *dict, struct casereader *,
+            const struct variable *v_indep, size_t n_dep, 
+            const struct variable **v_dep,
+            enum mv_class exclude);