New module src/math/categoricals .
[pspp-builds.git] / src / math / covariance.h
index 8855433e62eec71d582427dbcab02a63e5a2e43b..22e38e1ed7ae4370298442a02d476a2cc01fe4d3 100644 (file)
@@ -27,14 +27,13 @@ struct covariance;
 struct variable;
 struct ccase ;
 
-struct covariance * covariance_create (size_t n_vars, const struct variable **vars, 
-                                      const struct variable *wv, enum mv_class excl,
-                                      short passes);
+struct covariance * covariance_1pass_create (size_t n_vars, const struct variable **vars, 
+                                            const struct variable *wv, enum mv_class excl);
 
 struct covariance *
 covariance_2pass_create (size_t n_vars, const struct variable **vars,
                         size_t n_catvars, const struct variable **catvars, 
-                        const struct variable *weight, enum mv_class excl);
+                        const struct variable *wv, enum mv_class excl);
 
 void covariance_accumulate (struct covariance *, const struct ccase *);
 void covariance_accumulate_pass1 (struct covariance *, const struct ccase *);