#include <AnasaziBlockKrylovSchur.hpp>
Public Member Functions | |
BlockKrylovSchurState () | |
Public Attributes | |
int | curDim |
The current dimension of the reduction. | |
Teuchos::RCP< const MulVec > | V |
The current Krylov basis. | |
Teuchos::RCP< const Teuchos::SerialDenseMatrix < int, ScalarType > > | H |
The current Hessenberg matrix. | |
Teuchos::RCP< const Teuchos::SerialDenseMatrix < int, ScalarType > > | S |
The current Schur form reduction of the valid part of H. | |
Teuchos::RCP< const Teuchos::SerialDenseMatrix < int, ScalarType > > | Q |
The current Schur vectors of the valid part of H. |
This struct is utilized by BlockKrylovSchur::initialize() and BlockKrylovSchur::getState().
Definition at line 76 of file AnasaziBlockKrylovSchur.hpp.
Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::BlockKrylovSchurState | ( | ) | [inline] |
Definition at line 94 of file AnasaziBlockKrylovSchur.hpp.
int Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::curDim |
The current dimension of the reduction.
This should always be equal to BlockKrylovSchur::getCurSubspaceDim()
Definition at line 81 of file AnasaziBlockKrylovSchur.hpp.
Teuchos::RCP<const Teuchos::SerialDenseMatrix<int,ScalarType> > Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::H |
The current Hessenberg matrix.
The curDim
by curDim
leading submatrix of H is the projection of problem->getOperator() by the first curDim
vectors in V.
Definition at line 89 of file AnasaziBlockKrylovSchur.hpp.
Teuchos::RCP<const Teuchos::SerialDenseMatrix<int,ScalarType> > Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::Q |
The current Schur vectors of the valid part of H.
Definition at line 93 of file AnasaziBlockKrylovSchur.hpp.
Teuchos::RCP<const Teuchos::SerialDenseMatrix<int,ScalarType> > Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::S |
The current Schur form reduction of the valid part of H.
Definition at line 91 of file AnasaziBlockKrylovSchur.hpp.
Teuchos::RCP<const MulVec> Anasazi::BlockKrylovSchurState< ScalarType, MulVec >::V |