diff liboctave/DAERT.h @ 4277:5ab4ac522fec

[project @ 2003-01-03 23:45:06 by jwe]
author jwe
date Fri, 03 Jan 2003 23:47:10 +0000
parents a41827ec5677
children 4c8a2e4e0717
line wrap: on
line diff
--- a/liboctave/DAERT.h	Fri Jan 03 23:03:02 2003 +0000
+++ b/liboctave/DAERT.h	Fri Jan 03 23:47:10 2003 +0000
@@ -35,12 +35,12 @@
   DAERT (void)
     : base_diff_alg_eqn (), DAERTFunc () { }
 
-  DAERT (const ColumnVector& x, double t, DAERTFunc& f)
-    : base_diff_alg_eqn (x, t), DAERTFunc (f) { }
+  DAERT (const ColumnVector& xx, double tt, DAERTFunc& f)
+    : base_diff_alg_eqn (xx, tt), DAERTFunc (f) { }
 
-  DAERT (const ColumnVector& x, const ColumnVector& xdot, double t,
+  DAERT (const ColumnVector& xx, const ColumnVector& xxdot, double tt,
 	DAERTFunc& f)
-    : base_diff_alg_eqn (x, xdot, t), DAERTFunc (f) { }
+    : base_diff_alg_eqn (xx, xxdot, tt), DAERTFunc (f) { }
 
   DAERT (const DAERT& a)
     : base_diff_alg_eqn (a), DAERTFunc (a) { }
@@ -58,9 +58,10 @@
 
   ~DAERT (void) { }
 
-  void initialize (const ColumnVector& x, const ColumnVector& xdot, double t)
+  void initialize (const ColumnVector& xx, const ColumnVector& xxdot,
+		   double tt)
     {
-      base_diff_alg_eqn::initialize (x, xdot, t);
+      base_diff_alg_eqn::initialize (xx, xxdot, tt);
     }
 };