10 lines
175 B
C
Executable file
10 lines
175 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 "kernel/CVode.h"
|
|
|
|
#endif
|