valSPH
 All Classes Files Functions Variables
RK23Solver.h
Go to the documentation of this file.
1 
10 #ifndef __RK23Solver_h__
11 #define __RK23Solver_h__
12 
13 
14 #include "OdeSolver.h"
15 #include "Equation.h"
16 
17 
18 class RK23Solver : public OdeSolver {
19 
20 
21  public:
22 
23 
27  RK23Solver();
28 
29 
40  vector<double> solve(Equation *eq, vector<double> X0, double h, double ti);
41 
42 
46  ~RK23Solver();
47 
48 
49 };
50 
51 
52 #endif