NPAR TESTS: Fix two test failures.
[pspp-builds.git] / src / math / levene.h
index 67a4a1155b7813d6d84a37fe4987aada81e40f0e..c5e8bc3b4e9a15a49bc97d6837bb680cc06ceb4b 100644 (file)
 #if !levene_h
 #define levene_h 1
 
-#include <data/casereader.h>
-#include <data/missing-values.h>
-#include <data/variable.h>
+struct casereader;
+struct variable;
 
-/* Calculate the Levene statistic
 
-The independent variable :   v_indep;
+enum mv_class;
 
-Number of dependent variables :   n_dep;
+double
+levene (struct casereader *rx, const struct variable *gvar,
+       const struct variable *var, const struct variable *wv,  enum mv_class exclude );
 
-The dependent variables :   v_dep;
 
-*/
-
-
-struct dictionary ;
-struct casefilter ;
-
-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);
-
-
-
-#endif /* levene_h */
+#endif