Mercurial > hg > octave-lyh
diff liboctave/LSODE.h @ 1945:8c4bce5e773e
[project @ 1996-02-14 01:03:03 by jwe]
author | jwe |
---|---|
date | Wed, 14 Feb 1996 01:03:40 +0000 |
parents | d5ba1bd06584 |
children | 1b57120c997b |
line wrap: on
line diff
--- a/liboctave/LSODE.h +++ b/liboctave/LSODE.h @@ -128,7 +128,7 @@ LSODE (const ColumnVector& state, double time, const ODEFunc& f); - ~LSODE (void); + ~LSODE (void) { } void force_restart (void); @@ -157,14 +157,15 @@ int integration_error; int restart; int method_flag; - int *iwork; - double *rwork; + Array<int> iwork; + Array<double> rwork; int istate; int itol; int itask; int iopt; int liw; int lrw; + int working_too_hard; friend int lsode_f (int *neq, double *t, double *y, double *ydot);