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
7
extern
"C"
{
8
#endif
9
10
//integrators.c
11
typedef
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;
18
}
integrator_par
;
19
20
void
leapfrog_multistep(
double
tlen,
integrator_par
*int_par);
21
void
O2MN_multistep(
double
tlen,
integrator_par
*int_par);
22
void
O4MN_multistep(
double
tlen,
integrator_par
*int_par);
23
24
#ifdef __cplusplus
25
}
26
#endif
27
#endif
//INTEGRATORS_H
integrator_par
Definition
integrators.h:11
mon_list
Definition
monomials_core.c:10
monomial
Definition
monomials.h:58
Include
Update
integrators.h
Generated by
1.12.0