#include "../basics.h"
#include "precond.h"


Go to the source code of this file.
Namespaces | |
| namespace | TBCI |
Functions | |
| template<typename T, typename SysMatrix, typename SysVector> | |
| int | TBCI::CG (const SysMatrix &A, SysVector &x, const SysVector &b, const Preconditioner_Sig< T, SysMatrix > &M, unsigned int &max_iter, double &tol) |
| Iterative template solver routine -- CG. | |
| template<typename T, typename SysMatrix, typename SysVector> | |
| int | TBCI::CG2 (const SysMatrix &A, SysVector &x, const SysVector &b, const Preconditioner_Sig< T, SysMatrix > &M, unsigned int &max_iter, double &tol) |
| CG2 solves the symmetric complex (positive definite?) linear system Ax=b using the Conjugate Gradient method. | |
Definition in file cg.h.
1.5.6