Go to the documentation of this file.
14 #ifndef SOLVER_BICGSTAB_L_CMPLX_INCLUDED
15 #define SOLVER_BICGSTAB_L_CMPLX_INCLUDED
100 void set_parameters(
const int Niter,
const int Nrestart,
const double Stop_cond);
102 void set_parameters(
const int Niter,
const int Nrestart,
const double Stop_cond,
const bool use_init_guess);
108 void set_parameters(
const int Niter,
const int Nrestart,
const double Stop_cond,
const bool use_init_guess,
const double Omega_tolerance,
const int N_L);
112 void solve(
Field& solution,
const Field& source,
int& Nconv,
double& diff);
126 return i +
m_N_L * j;
142 static bool register_factory()
145 init &= Solver::Factory::Register(
"BiCGStab_L_Cmplx", create_object);
146 init &= Solver::Factory_params::Register(
"BiCGStab_L_Cmplx", create_object_with_params);
int index_ij(const int i, const int j)
static const std::string class_name
void solve(Field &solution, const Field &source, int &Nconv, double &diff)
Common parameter class: provides parameters as singleton.
void get_parameters(Parameters ¶ms) const
void reset_field(const Field &)
void set_parameters(const Parameters ¶ms)
DEPRECATED void set_parameters_BiCGStab_series(const double Omega_tolerance)
Base class for linear solver class family.
void solve_step(double &)
Solver_BiCGStab_L_Cmplx(Fopr *fopr)
~Solver_BiCGStab_L_Cmplx()
Bridge::VerboseLevel m_vl
void solve_init(const Field &, double &)
DEPRECATED void set_parameters_L(const int N_L)
Container of Field-type object.
Solver_BiCGStab_L_Cmplx(Fopr *fopr, const Parameters ¶ms)