accelerInt  v0.1
solver.h
Go to the documentation of this file.
1 
11  #ifndef SOLVER_H
12  #define SOLVER_H
13 
14  #include "solver_options.h"
15  #include "solver_init.h"
16  #include "solver_props.h"
17 
18 #ifdef GENERATE_DOCS
19  namespace generic {
20 #endif
21 
32  void intDriver (const int NUM, const double t, const double t_end,
33  const double* pr_global, double* y_global);
34 
43  int integrate(const double t_start, const double t_end, const double pr, double* y);
44 
45 #ifdef GENERATE_DOCS
46 }
47 #endif
48 
49  #endif
int integrate(const double t_start, const double t_end, const double pr, double *y)
A header definition of the integrate method, that must be implemented by various solvers.
Definition: radau2a.c:520
void intDriver(const int NUM, const double t, const double t_end, const double *pr_global, double *y_global)
Integration driver for the CPU integrators.
A file generated by Scons that specifies various options to the solvers.
simple convenience file to include the correct solver properties file
Definition: solver.h:19
Header definitions for solver initialization routins.