35 #ifndef _BLAZE_MATH_SOLVERS_CG_H_
36 #define _BLAZE_MATH_SOLVERS_CG_H_
VecN b_
The right-hand side vector .
Definition: LSE.h:84
VecN x_
The vector of unknowns .
Definition: LSE.h:85
VecN r_
TODO.
Definition: CG.h:86
A data structure for linear systems of equations.
A linear system of equations (LSE) data structure.The LSE class represent a linear system of equation...
Definition: LSE.h:65
bool solve(LSE &lse)
TODO.
Definition: CG.h:112
Header file for the complete DynamicVector implementation.
Header file for the base class of all solvers.
CG()
The default constructor for the conjugate gradient solver.
Definition: CG.cpp:61
VecN h_
TODO.
Definition: CG.h:88
VecN d_
TODO.
Definition: CG.h:87
CMatMxN A_
The system matrix .
Definition: LSE.h:83
Header file for the complete CompressedMatrix implementation.
Base class for all solver classes.TODO: description of the Solver class TODO: description of its func...
Definition: Solver.h:63
A conjugate gradient solver.TODO: description TODO: Problem formulation: !!
Definition: CG.h:64