X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flinreg.c;h=a50aa7d8f105aaff4a6921ee84a88539956d3122;hb=b1f538f35e5c6cc682550642147ca6ac10174116;hp=f2897e8e8d2461cd3c4a4484335bcca2bb0ba1c3;hpb=55c91d31974b42128462792cec99ec085ad1da03;p=pspp-builds.git diff --git a/src/math/linreg.c b/src/math/linreg.c index f2897e8e..a50aa7d8 100644 --- a/src/math/linreg.c +++ b/src/math/linreg.c @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include @@ -661,15 +660,18 @@ void pspp_linreg_set_indep_variable_mean (pspp_linreg_cache *c, const struct var only variables in the model are in the covariance matrix. */ static struct design_matrix * -rearrange_covariance_matrix (const struct design_matrix *cov, pspp_linreg_cache *c) +rearrange_covariance_matrix (const struct covariance_matrix *cm, pspp_linreg_cache *c) { const struct variable **model_vars; + struct design_matrix *cov; struct design_matrix *result; size_t *permutation; size_t i; size_t j; size_t k; + assert (cm != NULL); + cov = covariance_to_design (cm); assert (cov != NULL); assert (c != NULL); assert (cov->m->size1 > 0); @@ -719,8 +721,8 @@ rearrange_covariance_matrix (const struct design_matrix *cov, pspp_linreg_cache having to alter it. The problem is that this means the caller must set CACHE->N_COEFFS. */ -int -pspp_linreg_with_cov (const struct design_matrix *full_cov, +void +pspp_linreg_with_cov (const struct covariance_matrix *full_cov, pspp_linreg_cache * cache) { struct design_matrix *cov; @@ -732,6 +734,6 @@ pspp_linreg_with_cov (const struct design_matrix *full_cov, cache_init (cache); reg_sweep (cov->m); post_sweep_computations (cache, cov, cov->m); - covariance_matrix_destroy (cov); + design_matrix_destroy (cov); }