Implements a conjugate gradient method as sparse linear algebra solver for symmetric linear systems. More...
#include <symmetric_conjugate_gradient_method.hpp>

Protected Member Functions | |
| virtual returnValue | applyInversePreconditioner (double *x_) |
| virtual returnValue | applyPreconditioner (double *b) |
| virtual returnValue | computePreconditioner (double *A_) |
| virtual void | multiply (double *xx, double *result) |
Protected Member Functions inherited from ConjugateGradientMethod | |
| double | scalarProduct (double *aa, double *bb) |
Protected Member Functions inherited from SparseSolver | |
| returnValue | clear () |
| returnValue | copy (const SparseSolver &rhs) |
Protected Attributes | |
| int * | diag |
| int ** | index |
| int * | nIndex |
Protected Attributes inherited from ConjugateGradientMethod | |
| double * | A |
| double * | condScale |
| int | dim |
| int | nDense |
| double * | norm2 |
| double ** | p |
| int | pCounter |
| PrintLevel | printLevel |
| double * | r |
| double | TOL |
| double * | x |
Implements a conjugate gradient method as sparse linear algebra solver for symmetric linear systems.
The class SymmetricConjugateGradientMethod is a conjugate gradient method
which allows to solve symmetric linear equation of the form
A * x = b
where A is symmetric and positive definite.
Definition at line 61 of file symmetric_conjugate_gradient_method.hpp.
| BEGIN_NAMESPACE_ACADO SymmetricConjugateGradientMethod::SymmetricConjugateGradientMethod | ( | ) |
Default constructor.
Definition at line 46 of file symmetric_conjugate_gradient_method.cpp.
| SymmetricConjugateGradientMethod::SymmetricConjugateGradientMethod | ( | const SymmetricConjugateGradientMethod & | arg | ) |
Copy constructor (deep copy).
Definition at line 55 of file symmetric_conjugate_gradient_method.cpp.
|
virtual |
Destructor.
Definition at line 88 of file symmetric_conjugate_gradient_method.cpp.
|
protectedvirtual |
Applies the inverse of the preconditioner to the vector x (only internal use)
Implements ConjugateGradientMethod.
Definition at line 263 of file symmetric_conjugate_gradient_method.cpp.
|
protectedvirtual |
Applies the preconditioner to the vector b (only internal use)
Implements ConjugateGradientMethod.
Definition at line 250 of file symmetric_conjugate_gradient_method.cpp.
|
virtual |
Clone operator (deep copy).
Implements ConjugateGradientMethod.
Definition at line 105 of file symmetric_conjugate_gradient_method.cpp.
|
protectedvirtual |
Computes the preconditioner and Applies it to the input matrix.
Implements ConjugateGradientMethod.
Definition at line 227 of file symmetric_conjugate_gradient_method.cpp.
|
protectedvirtual |
Evaluates the matrix-vector product result = A*xx efficiently. (only internal use)
Implements ConjugateGradientMethod.
Definition at line 207 of file symmetric_conjugate_gradient_method.cpp.
|
virtual |
Sets an index list containing the positions of the
non-zero elements in the matrix A.
Implements ConjugateGradientMethod.
Definition at line 111 of file symmetric_conjugate_gradient_method.cpp.
|
virtual |
Sets an index list containing the positions of the
non-zero elements in the matrix A.
Definition at line 117 of file symmetric_conjugate_gradient_method.cpp.
|
protected |
Definition at line 128 of file symmetric_conjugate_gradient_method.hpp.
|
protected |
Definition at line 126 of file symmetric_conjugate_gradient_method.hpp.
|
protected |
Definition at line 127 of file symmetric_conjugate_gradient_method.hpp.