HiRep 0.1
Loading...
Searching...
No Matches
integrators.h
1#ifndef INTEGRATORS_H
2#define INTEGRATORS_H
3
4#include "monomials.h"
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10//integrators.c
11typedef struct integrator_par {
12 int nsteps;
13 int nmon;
14 monomial const **mon_list;
15 void (*integrator)(double, struct integrator_par *);
16 struct integrator_par *next;
17 int level;
19
20void leapfrog_multistep(double tlen, integrator_par *int_par);
21void O2MN_multistep(double tlen, integrator_par *int_par);
22void O4MN_multistep(double tlen, integrator_par *int_par);
23
24#ifdef __cplusplus
25}
26#endif
27#endif //INTEGRATORS_H
Definition integrators.h:11
Definition monomials_core.c:10
Definition monomials.h:58