So-Bogus
A c++ sparse block matrix library aimed at Second Order cone problems
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
bogus::krylov::solvers::CG< Matrix, Preconditioner, Traits > Struct Template Reference

Solves ( m_A * x = b ) using the Conjugate Gradient algorithm. More...

#include <KrylovMethods.hpp>

Inheritance diagram for bogus::krylov::solvers::CG< Matrix, Preconditioner, Traits >:
bogus::krylov::KrylovSolverBase< CG, Matrix, Preconditioner, Traits > bogus::LinearSolverBase< CG< Matrix, Preconditioner, Traits > >

Public Types

typedef KrylovSolverBase
< solvers::CG, Matrix,
Preconditioner, Traits > 
Base
 
typedef Traits::Scalar Scalar
 
typedef CG< Matrix,
Preconditioner, Traits > 
Derived
 
typedef Signal< unsigned, Scalar > SignalType
 
enum  
 
typedef BlockTraits< typename
LinearSolverTraits< CG< Matrix,
Preconditioner, Traits >
>::MatrixType > 
UnderlyingBlockTraits
 

Public Member Functions

 CG (const Matrix &A, unsigned maxIters, Scalar tol=NumTraits< Scalar >::epsilon(), const Preconditioner *P=(static_cast< const Preconditioner * >(0)), const typename Base::SignalType *callback=(static_cast< const typename Base::SignalType * >(0)))
 
template<typename RhsT , typename ResT >
Scalar vectorSolve (const RhsT &b, ResT x) const
 
LinearSolverTraits< Derived >
::template Result< RhsT >
::Type 
solve (const RhsT &rhs) const
 Returns the solution x of the linear system M * x = rhs.
 
Scalar solve (const RhsT &rhs, ResT &x) const
 Returns the solution x of the linear system M * x = rhs.
 
Derived & parallelizeRhs (bool parallelize=true)
 Whether to process multiple rhs in parallel.
 
Derived & enableResCaching (bool doCache=true)
 Whether to enable caching of solve(rhs) result for warmstarting purposes. More...
 
const CG< Matrix,
Preconditioner, Traits > & 
derived () const
 
CG< Matrix, Preconditioner,
Traits > & 
derived ()
 

Public Attributes

const Matrix * m_A
 
const Preconditioner * m_P
 
const SignalTypem_callback
 
Scalar m_tol
 
unsigned m_maxIters
 

Protected Attributes

bool m_parallelizeRhs
 
bool m_enableResCaching
 

Detailed Description

template<typename Matrix, typename Preconditioner = TrivialPreconditioner< Matrix >, typename Traits = ProblemTraits< typename MatrixTraits<Matrix>::Scalar >>
struct bogus::krylov::solvers::CG< Matrix, Preconditioner, Traits >

Solves ( m_A * x = b ) using the Conjugate Gradient algorithm.

For symmetric matrices only. Converges for positive definite linear systems.

<b>Matrix-vector mults/iter: </b> 1
<b>Preconditionner calls/iter: </b> 1
<b>Storage requirements: </b> 4n

Member Function Documentation

Derived& bogus::krylov::KrylovSolverBase< CG , Matrix, Preconditioner, Traits >::enableResCaching ( bool  doCache = true)
inherited

Whether to enable caching of solve(rhs) result for warmstarting purposes.

Warning
Not thread safe for parallel calls to solve(rhs)

The documentation for this struct was generated from the following file: