valSPH
 All Classes Files Functions Variables
OdeSolver.h
Go to the documentation of this file.
1 
10 #ifndef __OdeSolver_h__
11 #define __OdeSolver_h__
12 
13 
14 #include "Equation.h"
15 
16 
17 class OdeSolver {
18 
19 
20  private:
21 
22 
23  // Equation eq;
24 
25 
26  public:
27 
28 
32  OdeSolver();
33 
34 
45  virtual vector<double> solve(Equation *eq, vector<double> X0, double h, double ti) = 0;
46 
47 
51  ~OdeSolver();
52 
53 
54 };
55 
56 
57 #endif