+2006-07-15 Jason Stover <jhs@math.gcsu.edu>
+
+ * coefficient.c (pspp_coeff_init): Make design_matrix arg const.
+
2006-07-14 Jason Stover <jhs@math.gcsu.edu>
* coefficient.c (pspp_coeff_init): Removed use of
coefficient structures for the linear model.
*/
void
-pspp_coeff_init (struct pspp_coeff ** c, struct design_matrix *X)
+pspp_coeff_init (struct pspp_coeff ** c, const struct design_matrix *X)
{
size_t i;
int n_vals = 1;
Initialize the variable and value pointers inside the
coefficient structures for the linear model.
*/
-void pspp_coeff_init (struct pspp_coeff **, struct design_matrix *);
+void pspp_coeff_init (struct pspp_coeff **, const struct design_matrix *);
void