changeset 305:976a4a6e519b

[project @ 1994-01-18 21:27:18 by jwe]
author jwe
date Tue, 18 Jan 1994 21:27:23 +0000
parents 307cb26c335f
children b4b96eaaffa1
files liboctave/DAE.h liboctave/DASSL.cc
diffstat 2 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/DAE.h	Tue Jan 18 21:01:49 1994 +0000
+++ b/liboctave/DAE.h	Tue Jan 18 21:27:23 1994 +0000
@@ -53,8 +53,8 @@
 
   Vector integrate (double t);
 
-  Matrix integrate (const Vector& tout, const Matrix& xdot_out);
-  Matrix integrate (const Vector& tout, const Matrix& xdot_out,
+  Matrix integrate (const Vector& tout, Matrix& xdot_out);
+  Matrix integrate (const Vector& tout, Matrix& xdot_out,
 		    const Vector& tcrit); 
 
 protected:
--- a/liboctave/DASSL.cc	Tue Jan 18 21:01:49 1994 +0000
+++ b/liboctave/DASSL.cc	Tue Jan 18 21:27:23 1994 +0000
@@ -350,7 +350,7 @@
 }
 
 Matrix
-DAE::integrate (const Vector& tout, const Matrix& xdot_out)
+DAE::integrate (const Vector& tout, Matrix& xdot_out)
 {
   Matrix retval;
   int n_out = tout.capacity ();
@@ -385,8 +385,7 @@
 }
 
 Matrix
-DAE::integrate (const Vector& tout, const Matrix& xdot_out,
-		const Vector& tcrit) 
+DAE::integrate (const Vector& tout, Matrix& xdot_out, const Vector& tcrit) 
 {
   Matrix retval;
   int n_out = tout.capacity ();