Go to the documentation of this file.
40 const int Niter = 100;
41 const int Nrestart = 40;
42 const double Stop_cond = 1.0e-24;
43 const std::string str_solver_type =
"CG";
61 assert(NvolF == Nvol);
66 Field xi(NinF, NvolF, NexF);
76 const double xi2 = xi.
norm();
77 const double H_psf = xi2 * xi2;
102 Field v1(NinF, NvolF, NexF);
112 const double H_psf =
dot(v1,
m_psf);
124 const int Nin =
m_U->
nin();
126 const int Nex =
m_U->
nex();
130 assert(
force.nin() == Nin);
131 assert(
force.nvol() == Nvol);
132 assert(
force.nex() == Nex);
144 Field eta(NinF, NvolF, NexF);
149 vout.
general(
m_vl,
" Solver: Nconv = %6d diff = %12.6e\n", Nconv, diff);
154 Field force_org(Nin, Nvol, Nex);
161 double Fave, Fmax, Fdev;
162 force.stat(Fave, Fmax, Fdev);
163 vout.
general(
m_vl,
" Fstandard_ave = %12.6f Fstandard_max = %12.6f Fstandard_dev = %12.6f\n",
void set_string(const string &key, const string &value)
static const std::string class_name
virtual void mult(AFIELD &, const AFIELD &)
multiplies fermion operator to a given field.
virtual int field_nex()=0
returns the external degree of freedom of the fermion field.
Base class of random number generators.
virtual void set_parameters(const Parameters ¶ms)=0
virtual void set_config(Field *)=0
void get_parameters(Parameters &) const
double dot(const Field &y, const Field &x)
virtual void set_mode(std::string mode)
setting the mode of multiplication if necessary. Default implementation here is just to avoid irrelev...
virtual void set_config(Field *)=0
sets the gauge configuration.
virtual void solve(Field &solution, const Field &source, int &Nconv, double &diff)=0
void set_boundary_zero(Field_G &u)
virtual int field_nvol()=0
returns the volume of the fermion field.
virtual void force_core(Field &, const Field &)
Bridge::VerboseLevel m_vl
void reset(const int Nin, const int Nvol, const int Nex, const element_type cmpl=Element_type::COMPLEX)
void set_boundary_spatial_link_zero(Field_G &u)
double langevin(RandomNumbers *)
Langevis step.
double calcH()
calculate Hamiltonian of this action term.
static VerboseLevel set_verbose_level(const std::string &str)
int fetch_string(const string &key, string &value) const
Container of Field-type object.
virtual void gauss_lex_global(Field &)
gaussian random number defined on global lattice.
virtual int field_nin()=0
returns the on-site degree of freedom of the fermion field.
void force(Field &)
returns force for molcular dynamical update of conjugate momenta.
void general(const char *format,...)
static std::string get_verbose_level(const VerboseLevel vl)