pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/math coefficient.c coefficient.h Chang...


From: Jason H Stover
Subject: [Pspp-cvs] pspp/src/math coefficient.c coefficient.h Chang...
Date: Sat, 15 Jul 2006 20:25:01 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Changes by:     Jason H Stover <jstover>        06/07/15 20:25:01

Modified files:
        src/math       : coefficient.c coefficient.h ChangeLog 

Log message:
        made matrix argument const in coefficient initialization

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/math/coefficient.c?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/src/math/coefficient.h?cvsroot=pspp&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/pspp/src/math/ChangeLog?cvsroot=pspp&r1=1.8&r2=1.9

Patches:
Index: coefficient.c
===================================================================
RCS file: /sources/pspp/pspp/src/math/coefficient.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- coefficient.c       14 Jul 2006 19:17:50 -0000      1.3
+++ coefficient.c       15 Jul 2006 20:25:01 -0000      1.4
@@ -53,7 +53,7 @@
   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: coefficient.h
===================================================================
RCS file: /sources/pspp/pspp/src/math/coefficient.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- coefficient.h       14 Jul 2006 19:17:50 -0000      1.5
+++ coefficient.h       15 Jul 2006 20:25:01 -0000      1.6
@@ -72,7 +72,7 @@
   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

Index: ChangeLog
===================================================================
RCS file: /sources/pspp/pspp/src/math/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- ChangeLog   14 Jul 2006 19:17:50 -0000      1.8
+++ ChangeLog   15 Jul 2006 20:25:01 -0000      1.9
@@ -1,3 +1,7 @@
+2006-07-15  Jason Stover  <address@hidden>
+
+       * coefficient.c (pspp_coeff_init): Make design_matrix arg const.
+
 2006-07-14  Jason Stover  <address@hidden>
 
        * coefficient.c (pspp_coeff_init): Removed use of




reply via email to

[Prev in Thread] Current Thread [Next in Thread]