#include "sbmlsolver/exportdefs.h"
Include dependency graph for cvodeSolver.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
SBML_ODESOLVER_API int | IntegratorInstance_cvodeOneStep (integratorInstance_t *) |
Calls CVODE to move the current simulation one time step. | |
SBML_ODESOLVER_API void | IntegratorInstance_printCVODEStatistics (integratorInstance_t *, FILE *f) |
Prints some final statistics of the calls to CVODE routines, that are located in CVODE's iopt array. | |
int | IntegratorInstance_createCVODESolverStructures (integratorInstance_t *) |
creates CVODE structures and fills cvodeSolver, returns 1 on success or 0 on failure | |
void | IntegratorInstance_freeCVODESolverStructures (integratorInstance_t *) |
int | check_flag (void *flagvalue, char *funcname, int opt, FILE *f) |
void | f (realtype t, N_Vector y, N_Vector ydot, void *f_data) |
f routine: Compute f(t,x) = df/dx . | |
void | JacODE (long int N, DenseMat J, realtype t, N_Vector y, N_Vector fy, void *jac_data, N_Vector vtemp1, N_Vector vtemp2, N_Vector vtemp3) |
Jacobian routine: Compute J(t,x) = df/dx. |