made matrix argument const in coefficient initialization
authorJason Stover <jhs@math.gcsu.edu>
Sat, 15 Jul 2006 20:25:01 +0000 (20:25 +0000)
committerJason Stover <jhs@math.gcsu.edu>
Sat, 15 Jul 2006 20:25:01 +0000 (20:25 +0000)
src/math/ChangeLog
src/math/coefficient.c
src/math/coefficient.h

index 1d99752ecd9d92fa78ad07009c95e88cbf55ae75..2d1b2e96fac749e658cd62f9783acfa5e377c917 100644 (file)
@@ -1,3 +1,7 @@
+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
index fcd7425e1761737c55f7ab7a4c385bbc74354b30..eb2ee3174e42721e9b74147807453dc09f64caab 100644 (file)
@@ -53,7 +53,7 @@ pspp_coeff_free (struct pspp_coeff *c)
   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;
index 4019c549b33253c57da77a646d11afff88e2a992..75044f0cadcc261831520845c17ffd170cd1446d 100644 (file)
@@ -72,7 +72,7 @@ void pspp_coeff_free (struct pspp_coeff *);
   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