valSPH
 All Classes Files Functions Variables
PdeSolver.h
Go to the documentation of this file.
1 
10 #ifndef __PdeSolver_h__
11 #define __PdeSolver_h__
12 
13 
14 #include "Equation.h"
15 
16 
17 class PdeSolver {
18 
19 
20  private:
21 
22 
23  public:
24 
25 
29  PdeSolver();
30 
31 
42  virtual vector<double> solve(Equation *eq, vector<double> X0, double h, double ti) = 0;
43 
44 
48  ~PdeSolver();
49 
50 
51 };
52 
53 
54 #endif