Bridge++  Ver. 1.3.x
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 
36 class Fprop_Standard_eo : public Fprop
37 {
38  public:
39  static const std::string class_name;
40 
41  public:
42 
44  : Fprop(), m_solver(solver)
45  {
46  m_index = new Index_eo;
48  }
49 
51  : Fprop(), m_solver(solver.get())
52  {
53  m_index = new Index_eo;
55  }
56 
58  {
59  delete m_index;
60  delete m_Ueo;
61  }
62 
63  void set_config(Field *);
64 
65  void invert_D(Field&, const Field&, int&, double&);
66  void invert_DdagD(Field&, const Field&, int&, double&);
67 
68 
69  private:
72 
74 };
75 #endif
void set_config(Field *)
Definition: fprop.h:20
Container of Field-type object.
Definition: field.h:39
static const std::string class_name
void invert_D(Field &, const Field &, int &, double &)
Even-odd site index.
Definition: index_eo.h:38
SU(N) gauge field.
Definition: field_G.h:38
Get quark propagator for Fopr with even-odd site index.
void invert_DdagD(Field &, const Field &, int &, double &)
Base class for linear solver class family.
Definition: solver.h:38
Fprop_Standard_eo(unique_ptr< Solver > &solver)
Fprop_Standard_eo(Solver *solver)