diff liboctave/DASRT.h @ 3994:a41827ec5677

[project @ 2002-07-16 23:57:09 by jwe]
author jwe
date Tue, 16 Jul 2002 23:57:09 +0000
parents 53b4eab68976
children ee0304212be0
line wrap: on
line diff
--- a/liboctave/DASRT.h	Tue Jul 16 20:18:57 2002 +0000
+++ b/liboctave/DASRT.h	Tue Jul 16 23:57:09 2002 +0000
@@ -158,6 +158,8 @@
 
   DASRT (void);
 
+  DASRT (const ColumnVector& state, double time, DAERTFunc& f);
+
   DASRT (const ColumnVector& state, const ColumnVector& deriv,
 	 double time, DAERTFunc& f);
 
@@ -189,38 +191,26 @@
   int liw;  
   int lrw;
   int idid;
-  int ieform;
-  int lun;
 
   int n;
-  int npar;
   int ng;
 
   Array<int> info;
   Array<int> iwork;
-  Array<int> ipar;
   Array<int> jroot;
 
   Array<double> rwork;
-  Array<double> rpar;
-
-  Matrix y;
-  Matrix ydot;
 
   double abs_tol;
   double rel_tol;
 
-  double *py;
-  double *pydot;
+  double *px;
+  double *pxdot;
   int *pinfo;
   int *piwork;
   double *prwork;
-  double *prpar;
-  int *pipar;
   int *pjroot;
 
-  void init_work_size (int);
-
   void integrate (double t);
 };