Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
solver_BiCGStab_Cmplx.h
Go to the documentation of this file.
1 
14 #ifndef SOLVER_BICGSTAB_CMPLX_INCLUDED
15 #define SOLVER_BICGSTAB_CMPLX_INCLUDED
16 
17 #include "solver.h"
18 
19 #include "bridgeIO.h"
20 using Bridge::vout;
21 
22 
23 //- parameters class
25 {
26  public:
28 };
29 //- end
30 
32 
43 {
44  public:
45  static const std::string class_name;
46 
47  private:
49  int m_Niter;
50  double m_Stop_cond;
51 
52  Field s, r, x, rh, p, v, t;
54 
55  public:
57  : Solver(), m_fopr(fopr) {}
58 
60 
61  void set_parameters(const Parameters& params);
62  void set_parameters(const int Niter, const double Stop_cond);
63 
64  void solve(Field& solution, const Field& source,
65  int& Nconv, double& diff);
66 
67  Fopr *get_fopr() { return m_fopr; }
68 
69  private:
70  void reset_field(const Field&);
71 
72  void solve_init(const Field&, double&);
73  void solve_step(double&);
74 };
75 #endif
void reset_field(const Field &)
BridgeIO vout
Definition: bridgeIO.cpp:207
static const std::string class_name
void solve(Field &solution, const Field &source, int &Nconv, double &diff)
Container of Field-type object.
Definition: field.h:37
void set_parameters(const Parameters &params)
Class for parameters.
Definition: parameters.h:40
void solve_init(const Field &, double &)
BiCGStab algorithm with complex variables.
Base class for linear solver class family.
Definition: solver.h:37
Base class of fermion operator family.
Definition: fopr.h:39