Mercurial > hg > octave-lyh
diff liboctave/DASRT.h @ 4049:a35a3c5d4740
[project @ 2002-08-16 08:54:31 by jwe]
author | jwe |
---|---|
date | Fri, 16 Aug 2002 08:54:31 +0000 |
parents | 9678c5526190 |
children | 6e86256e9c54 |
line wrap: on
line diff
--- a/liboctave/DASRT.h +++ b/liboctave/DASRT.h @@ -74,12 +74,14 @@ { public: - DASRT (void); + DASRT (void) : DAERT (), DASRT_options (), initialized (false) { } - DASRT (const ColumnVector& state, double time, DAERTFunc& f); + DASRT (const ColumnVector& state, double time, DAERTFunc& f) + : DAERT (state, time, f), DASRT_options (), initialized (false) { } DASRT (const ColumnVector& state, const ColumnVector& deriv, - double time, DAERTFunc& f); + double time, DAERTFunc& f) + : DAERT (state, deriv, time, f), DASRT_options (), initialized (false) { } ~DASRT (void) { } @@ -94,12 +96,9 @@ bool initialized; - bool sanity_checked; - int liw; int lrw; - int n; int ng; Array<int> info;