comparison 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
comparison
equal deleted inserted replaced
4048:c9991c59cf5c 4049:a35a3c5d4740
72 class 72 class
73 DASRT : public DAERT, public DASRT_options 73 DASRT : public DAERT, public DASRT_options
74 { 74 {
75 public: 75 public:
76 76
77 DASRT (void); 77 DASRT (void) : DAERT (), DASRT_options (), initialized (false) { }
78 78
79 DASRT (const ColumnVector& state, double time, DAERTFunc& f); 79 DASRT (const ColumnVector& state, double time, DAERTFunc& f)
80 : DAERT (state, time, f), DASRT_options (), initialized (false) { }
80 81
81 DASRT (const ColumnVector& state, const ColumnVector& deriv, 82 DASRT (const ColumnVector& state, const ColumnVector& deriv,
82 double time, DAERTFunc& f); 83 double time, DAERTFunc& f)
84 : DAERT (state, deriv, time, f), DASRT_options (), initialized (false) { }
83 85
84 ~DASRT (void) { } 86 ~DASRT (void) { }
85 87
86 DASRT_result integrate (const ColumnVector& tout); 88 DASRT_result integrate (const ColumnVector& tout);
87 89
92 94
93 private: 95 private:
94 96
95 bool initialized; 97 bool initialized;
96 98
97 bool sanity_checked;
98
99 int liw; 99 int liw;
100 int lrw; 100 int lrw;
101 101
102 int n;
103 int ng; 102 int ng;
104 103
105 Array<int> info; 104 Array<int> info;
106 Array<int> iwork; 105 Array<int> iwork;
107 Array<int> jroot; 106 Array<int> jroot;