12 lines
248 B
C
Executable file
12 lines
248 B
C
Executable file
/**
|
|
* @file integrators.h
|
|
* ODE integrators. Currently, the only integrator is CVODE.
|
|
*/
|
|
#ifndef CT_INTEG_H_INCL
|
|
#define CT_INTEG_H_INCL
|
|
|
|
#include "numerics/Integrator.h"
|
|
#include "numerics/DAE_Solver.h"
|
|
#include "numerics/IDA_Solver.h"
|
|
|
|
#endif
|