libode
Easy to compile, fast ODE integrators as C++ classes
Loading...
Searching...
No Matches
ode_erk.cc
Go to the documentation of this file.
1
2
3#include "ode_erk.h"
4
5namespace ode {
6
7OdeERK::OdeERK (unsigned long neq) {
8
9 //temporary solution vector
10 soltemp_ = new double[neq];
11}
12
13//destructor
14OdeERK::~OdeERK () {
15 delete [] soltemp_;
16}
17
18} // namespace ode
OdeERK(unsigned long neq)
constructs
Definition ode_erk.cc:7
double * soltemp_
temporary solution vector
Definition ode_erk.h:22