libode
Easy to compile, fast ODE integrators as C++ classes
Loading...
Searching...
No Matches
ode_erk.h
Go to the documentation of this file.
1#ifndef ODE_ERK_H_
2#define ODE_ERK_H_
3
5
6namespace ode {
7
9class OdeERK {
10
11 public:
13
16 OdeERK (unsigned long neq);
17 //destructs
18 ~OdeERK ();
19
20 protected:
22 double *soltemp_;
23};
24
25} // namespace ode
26
27#endif
Base class providing space for temporary solutions moving through RK stages.
Definition ode_erk.h:9
OdeERK(unsigned long neq)
constructs
Definition ode_erk.cc:7
double * soltemp_
temporary solution vector
Definition ode_erk.h:22