MOAB  4.9.3pre
Eigen::IdentityPreconditioner Class Reference

A naive preconditioner which approximates any matrix as the identity matrix. More...

#include <BasicPreconditioners.h>

List of all members.

Public Member Functions

 IdentityPreconditioner ()
template<typename MatrixType >
 IdentityPreconditioner (const MatrixType &)
template<typename MatrixType >
IdentityPreconditioneranalyzePattern (const MatrixType &)
template<typename MatrixType >
IdentityPreconditionerfactorize (const MatrixType &)
template<typename MatrixType >
IdentityPreconditionercompute (const MatrixType &)
template<typename Rhs >
const Rhs & solve (const Rhs &b) const
ComputationInfo info ()

Detailed Description

A naive preconditioner which approximates any matrix as the identity matrix.

See also:
class DiagonalPreconditioner

Definition at line 185 of file BasicPreconditioners.h.


Constructor & Destructor Documentation

template<typename MatrixType >
Eigen::IdentityPreconditioner::IdentityPreconditioner ( const MatrixType &  ) [inline, explicit]

Definition at line 192 of file BasicPreconditioners.h.

{}

Member Function Documentation

template<typename MatrixType >
IdentityPreconditioner& Eigen::IdentityPreconditioner::analyzePattern ( const MatrixType &  ) [inline]

Definition at line 195 of file BasicPreconditioners.h.

{ return *this; }
template<typename MatrixType >
IdentityPreconditioner& Eigen::IdentityPreconditioner::compute ( const MatrixType &  ) [inline]

Definition at line 201 of file BasicPreconditioners.h.

{ return *this; }
template<typename MatrixType >
IdentityPreconditioner& Eigen::IdentityPreconditioner::factorize ( const MatrixType &  ) [inline]

Definition at line 198 of file BasicPreconditioners.h.

{ return *this; }

Definition at line 206 of file BasicPreconditioners.h.

{ return Success; }
template<typename Rhs >
const Rhs& Eigen::IdentityPreconditioner::solve ( const Rhs &  b) const [inline]

Definition at line 204 of file BasicPreconditioners.h.

{ return b; }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines