Class xlifepp::BicgSolver#
-
class BicgSolver : public xlifepp::IterativeSolver#
-
Inheritence diagram for xlifepp::BicgSolver:
Collaboration diagram for xlifepp::BicgSolver:
Implement BiConjugate Gradient algorithm.
Public Functions
-
inline BicgSolver()#
-
Default Constructor.
-
inline BicgSolver(real_t eps, number_t maxOfIt = defaultMaxIterations, number_t vb = theVerboseLevel)#
-
Full constructor.
-
template<class Mat, class VecB, class VecX>
inline VecX operator()(Mat &matA, VecB &vecB, VecX &vecX0)#
-
Template Solvers without a precondition without argument “solType.
-
template<class Mat, class VecB, class VecX, class Prec>
inline VecX operator()(Mat &matA, VecB &vecB, VecX &vecX0, Prec &pc, ValueType solType)#
-
Template Solvers with a preconditioner.
-
template<class Mat, class VecB, class VecX>
inline VecX operator()(Mat &matA, VecB &vecB, VecX &vecX0, ValueType solType)#
-
Template Solvers without a precondition.
-
inline BicgSolver()#