Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
solver_CGNE.h
Go to the documentation of this file.
1 
14 #ifndef SOLVER_CGNE_INCLUDED
15 #define SOLVER_CGNE_INCLUDED
16 
17 #include "solver_CG.h"
18 
19 //- parameters class
20 class Parameters_Solver_CGNE : virtual public Parameters
21 {
22  public:
24 };
25 //- end
26 
28 
38 class Solver_CGNE : public Solver_CG
39 {
40  public:
42  : Solver_CG(fopr) {}
43 
45 
46  void set_parameters(const Parameters& params);
47 
48  void solve(Field& solution, const Field& source, int& Nconv, double& diff);
49 
50  Fopr *get_fopr() { return this->Solver_CG::get_fopr(); }
51 
52  private:
53 };
54 #endif