OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Steppers.h
Go to the documentation of this file.
1 #ifndef STEPPERS_H
2 #define STEPPERS_H
3 
4 #include "RK4.h"
5 #include "LF2.h"
6 
7 namespace stepper {
8 
9  enum INTEGRATOR {
10  UNDEFINED = -1,
11  RK4 = 0,
12  LF2 = 1,
13  MTS = 2
14  };
15 };
16 
17 #endif
4-th order Runnge-Kutta stepper
Definition: RK4.h:9
Leap-Frog 2nd order.
Definition: LF2.h:9
INTEGRATOR
Definition: Steppers.h:9