GR Engine
A physics engine in curved space-time
 All Classes Files Functions Variables
rk4integrator.h
Go to the documentation of this file.
1 #ifndef __RK4INTEGRATOR__
2 #define __RK4INTEGRATOR__
3 
8  #include "numeric.h"
9 
13 class RK4Integrator : public Integrator
14 {
15 public:
17 
19  RK4Integrator(double stepSize = 0.01);
23 
27  StateVector next(StateVector state, DiffEq* equation, double step = 0.0);
28 };
29 
30 #endif
31