Bridge++  Version 1.5.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
gradientFlow_RungeKutta_1st.h
Go to the documentation of this file.
1 
13 #ifndef GRADIENTFLOW_RUNGEKUTTA_1ST_INCLUDED
14 #define GRADIENTFLOW_RUNGEKUTTA_1ST_INCLUDED
15 
17 
18 #include "IO/bridgeIO.h"
19 using Bridge::vout;
20 
22 
30 {
31  public:
32  static const std::string class_name;
33 
34  protected:
36 
37  private:
39  int m_Nprec;
40  int m_Ndim, m_Nvol;
41 
42  //- working area
44 
45  public:
46  GradientFlow_RungeKutta_1st(Action *action, const int Nprec, const Bridge::VerboseLevel vl)
47  : GradientFlow_RungeKutta(action, Nprec, vl)
48  {
49  m_action = action;
50  m_Nprec = Nprec;
53 
55  }
56 
58 
59  void flow(double& t, double& Estep, Field_G& U);
60 
61  int Norder_RK() const { return 1; }
62 };
63 #endif
BridgeIO vout
Definition: bridgeIO.cpp:503
void reset(const int Nvol, const int Nex)
Definition: field_G.h:79
Base class of HMC action class family.
Definition: action.h:36
void flow(double &t, double &Estep, Field_G &U)
SU(N) gauge field.
Definition: field_G.h:38
GradientFlow_RungeKutta_1st(Action *action, const int Nprec, const Bridge::VerboseLevel vl)
GradientFlow_RungeKutta_1st construction.
Bridge::VerboseLevel vl
VerboseLevel
Definition: bridgeIO.h:42
GradientFlow_RungeKutta construction.