#include <AnasaziLOBPCGSolMgr.hpp>
Inheritance diagram for Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >:

Public Member Functions | |
Constructors/Destructor | |
| LOBPCGSolMgr (const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > &problem, Teuchos::ParameterList &pl) | |
| Basic constructor for LOBPCGSolMgr. | |
| virtual | ~LOBPCGSolMgr () |
| Destructor. | |
Accessor methods | |
|
const Eigenproblem< ScalarType, MV, OP > & | getProblem () const |
Solver application methods | |
| ReturnType | solve () |
| This method performs possibly repeated calls to the underlying eigensolver's iterate() routine until the problem has been solved (as decided by the solver manager) or the solver manager decides to quit. | |
This solver manager exists to provide a flexible manager over the Anasazi::LOBPCG eigensolver intended for general use. Features provided by this solver manager include:
These options are all driven by a list of parameters handed to the solver manager at construction. For more information, see Anasazi::LOBPCGSolMgr::LOBPCGSolMgr().
LOBPCG/LOBPCGEpetraEx.cpp, and LOBPCG/LOBPCGEpetraExGen.cpp.
Definition at line 86 of file AnasaziLOBPCGSolMgr.hpp.
| Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::LOBPCGSolMgr | ( | const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > & | problem, | |
| Teuchos::ParameterList & | pl | |||
| ) |
Basic constructor for LOBPCGSolMgr.
This constructor accepts the Eigenproblem to be solved in addition to a parameter list of options for the solver manager. These options include the following:
"Which" - a string specifying the desired eigenvalues: SM, LM, SR or LR. Default: "SR""Block Size" - a int specifying the block size to be used by the underlying LOBPCG solver. Default: problem->getNEV()"Full Ortho" - a bool specifying whether the underlying solver should employ the full orthogonalization scheme. Default: true"Recover" - a bool specifying whether the solver manager should attempt to recover in the case of a LOBPCGRitzFailure when full orthogonalization is disabled. Default: true"Maximum Iterations" - a int specifying the maximum number of iterations the underlying solver is allowed to perform. Default: 100"Verbosity" - a sum of MsgType specifying the verbosity. Default: Anasazi::Errors"Convergence Tolerance" - a MagnitudeType specifying the level that residual norms must reach to decide convergence. Default: machine precision."Relative Convergence Tolerance" - a bool specifying whether residuals norms should be scaled by their eigenvalues for the purposing of deciding convergence. Default: true"Use Locking" - a bool specifying whether the algorithm should employ locking of converged eigenpairs. Default: false"Max Locked" - a int specifying the maximum number of eigenpairs to be locked. Default: problem->getNEV()"Locking Quorum" - a int specifying the number of eigenpairs that must meet the locking criteria before locking actually occurs. Default: 1"Locking Tolerance" - a MagnitudeType specifying the level that residual norms must reach to decide locking. Default: 0.1*convergence tolerance"Relative Locking Tolerance" - a bool specifying whether residuals norms should be scaled by their eigenvalues for the purposing of deciding locking. Default: true"Init" - a LOBPCGState<ScalarType,MV> struct used to initialize the LOBPCG eigensolver. Definition at line 188 of file AnasaziLOBPCGSolMgr.hpp.
| virtual Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::~LOBPCGSolMgr | ( | ) | [inline, virtual] |
| ReturnType Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::solve | ( | ) | [virtual] |
This method performs possibly repeated calls to the underlying eigensolver's iterate() routine until the problem has been solved (as decided by the solver manager) or the solver manager decides to quit.
This method calls LOBPCG::iterate(), which will return either because a specially constructed status test evaluates to Passed or an exception is thrown.
A return from LOBPCG::iterate() signifies one of the following scenarios:
Implements Anasazi::SolverManager< ScalarType, MV, OP >.
Definition at line 282 of file AnasaziLOBPCGSolMgr.hpp.
1.4.7