CHROMA
syssolver_mr_params.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Solve a MR system
4  */
5 
6 #ifndef __syssolver_mr_params_h__
7 #define __syssolver_mr_params_h__
8 
9 #include "chromabase.h"
10 
11 
12 namespace Chroma
13 {
14 
15  //! Params for MR inverter
16  /*! \ingroup invert */
18  {
20  SysSolverMRParams(XMLReader& in, const std::string& path);
21 
22  Real MROver; /*!< MR over-relaxation parameter */
23  Real RsdMR; /*!< MR residual */
24  int MaxMR; /*!< Maximum MR iterations */
25  };
26 
27 
28  // Reader/writers
29  /*! \ingroup invert */
30  void read(XMLReader& xml, const std::string& path, SysSolverMRParams& param);
31 
32  /*! \ingroup invert */
33  void write(XMLWriter& xml, const std::string& path, const SysSolverMRParams& param);
34 
35 } // End namespace
36 
37 #endif
38 
Primary include file for CHROMA library code.
void read(XMLReader &xml, const std::string &path, AsqtadFermActParams &param)
Read parameters.
void write(XMLWriter &xml, const std::string &path, const AsqtadFermActParams &param)
Writer parameters.
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
static QDP_ColorVector * in
::std::string string
Definition: gtest.h:1979
Params for MR inverter.
SysSolverMRParams()
Default constructor.