CHROMA
syssolver_bicgstab_params.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Solve a BICGSTAB system
4  */
5 
6 #ifndef __syssolver_bicgstab_params_h__
7 #define __syssolver_bicgstab_params_h__
8 
9 #include "chromabase.h"
10 
11 
12 namespace Chroma
13 {
14 
15  //! Params for BiCGStab inverter
16  /*! \ingroup invert */
18  {
20  SysSolverBiCGStabParams(XMLReader& in, const std::string& path);
21  Real RsdBiCGStab; /*!< BiCGStab residual */
22  int MaxBiCGStab; /*!< Maximum BiCGStab iterations */
23  };
24 
25 
26  // Reader/writers
27  /*! \ingroup invert */
28  void read(XMLReader& xml, const std::string& path, SysSolverBiCGStabParams& param);
29 
30  /*! \ingroup invert */
31  void write(XMLWriter& xml, const std::string& path, const SysSolverBiCGStabParams& param);
32 
33 } // End namespace
34 
35 #endif
36 
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 BiCGStab inverter.