diff liboctave/ODE.h @ 4587:7b957b442818

[project @ 2003-11-10 15:50:39 by jwe]
author jwe
date Mon, 10 Nov 2003 15:50:40 +0000
parents addebffd4961
children 4c8a2e4e0717
line wrap: on
line diff
--- a/liboctave/ODE.h
+++ b/liboctave/ODE.h
@@ -34,8 +34,8 @@
   ODE (void)
     : base_diff_eqn (), ODEFunc () { }
 
-  ODE (const ColumnVector& state, double time, const ODEFunc& f)
-    : base_diff_eqn (state, time), ODEFunc (f) { }
+  ODE (const ColumnVector& s, double tm, const ODEFunc& f)
+    : base_diff_eqn (s, tm), ODEFunc (f) { }
 
   ODE (const ODE& a)
     : base_diff_eqn (a), ODEFunc (a) { }