accelerInt  v0.1
solver_init.h
Go to the documentation of this file.
1 
11  #ifndef SOLVER_INIT_H
12  #define SOLVER_INIT_H
13 
14  #ifdef GENERATE_DOCS
15  namespace generic{
16  #endif
17 
18  void init_solver_log();
19  void solver_log();
20  void initialize_solver(int num_threads);
21  void cleanup_solver(int num_threads);
22  const char* solver_name();
23 
24  #ifdef GENERATE_DOCS
25  }
26  #endif
27 
28  #endif
void cleanup_solver(int num_threads)
Cleans up the created solvers.
Definition: cvodes_init.c:165
void initialize_solver(int num_threads)
Initializes the solver.
Definition: cvodes_init.c:49
void solver_log()
Executes solver specific logging tasks.
Definition: cvodes_init.c:192
void init_solver_log()
Initializes solver specific items for logging.
Definition: cvodes_init.c:190
const char * solver_name()
Returns a descriptive solver name.
Definition: cvodes_init.c:181
Definition: solver.h:19