sys-file-reader: Better handle duplicate names without long names.
[pspp] / src / math / covariance.h
index 2aee9f18b9e0c80a9fa684d58844bebe4442f4a2..18f1137a79cc6e82d04db5448c3130fcfb81efa6 100644 (file)
@@ -27,13 +27,13 @@ struct variable;
 struct ccase ;
 struct categoricals;
 
-struct covariance * covariance_1pass_create (size_t n_vars, const struct variable *const *vars, 
-                                            const struct variable *wv, enum mv_class excl);
+struct covariance * covariance_1pass_create (size_t n_vars, const struct variable *const *vars,
+                                            const struct variable *wv, enum mv_class excl, bool centered);
 
 struct covariance *
 covariance_2pass_create (size_t n_vars, const struct variable *const *vars,
                         struct categoricals *cats,
-                        const struct variable *wv, enum mv_class excl);
+                        const struct variable *wv, enum mv_class excl, bool centered);
 
 void covariance_accumulate (struct covariance *, const struct ccase *);
 void covariance_accumulate_pass1 (struct covariance *, const struct ccase *);