valSPH
 All Classes Files Functions Variables
EulerExplicitSolver.h
Go to the documentation of this file.
1 
10 #ifndef __EulerExplicitSolver_h__
11 #define __EulerExplicitSolver_h__
12 
13 
14 #include "OdeSolver.h"
15 #include "Equation.h"
16 
17 #include <vector>
18 
19 
20 using namespace std;
21 
22 
24 
25 
26  private:
27 
28 
29  public:
30 
31 
36 
37 
48  vector<double> solve(Equation *eq, vector<double> X0, double h, double ti);
49 
50 
55 
56 
57 };
58 
59 
60 #endif