Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fprop_Standard_eo.h
Go to the documentation of this file.
1 
14 #ifndef FPROP_STANDARD_EO_INCLUDED
15 #define FPROP_STANDARD_EO_INCLUDED
16 
17 #include "fprop.h"
18 #include "field_G.h"
19 
20 #include "fopr_eo.h"
21 #include "index_eo.h"
22 
23 #include "solver.h"
24 
26 
34 class Fprop_Standard_eo : public Fprop
35 {
36  public:
37 
39  : Fprop(), m_solver(solver)
40  {
41  m_index = new Index_eo;
43  }
44 
46  {
47  delete m_index;
48  delete m_Ueo;
49  }
50 
51  void set_config(Field *);
52 
53  void invert_D(Field&, const Field&, int&, double&);
54  void invert_DdagD(Field&, const Field&, int&, double&);
55 
56 
57  private:
60 
62 };
63 #endif