Bridge++  Version 1.4.4
 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/field_G.h"
19 
20 #include "Fopr/fopr_eo.h"
21 #include "Field/index_eo.h"
22 
23 #include "Solver/solver.h"
24 
26 
37 class Fprop_Standard_eo : public Fprop
38 {
39  public:
40  static const std::string class_name;
41 
42  private:
45 
47 
48  public:
50  : Fprop(), m_solver(solver)
51  {
52  m_index = new Index_eo;
54  }
55 
57  : Fprop(), m_solver(solver.get())
58  {
59  m_index = new Index_eo;
61  }
62 
64  {
65  delete m_index;
66  delete m_Ueo;
67  }
68 
69  private:
70  // non-copyable
73 
74  public:
75  void set_config(Field *);
76 
77  void invert_D(Field&, const Field&, int&, double&);
78  void invert_DdagD(Field&, const Field&, int&, double&);
79 
80  double flop_count();
81 };
82 #endif
void set_config(Field *)
Base class for fermion propagator class family.
Definition: fprop.h:30
Container of Field-type object.
Definition: field.h:39
static const std::string class_name
Fprop_Standard_eo & operator=(const Fprop_Standard_eo &)
void invert_D(Field &, const Field &, int &, double &)
Even-odd site index.
Definition: index_eo.h:39
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:37
Fprop_Standard_eo(unique_ptr< Solver > &solver)
Fprop_Standard_eo(Solver *solver)