| 
    Anasazi Version of the Day
    
   | 
 
Adapter class for creating an operators often used in solving generalized eigenproblems. More...
#include <AnasaziEpetraAdapter.hpp>
  
Public Member Functions | |
| EpetraGenOp (const Teuchos::RCP< Epetra_Operator > &AOp, const Teuchos::RCP< Epetra_Operator > &MOp, bool isAInverse=true) | |
| Basic constructor for applying operator  | |
| ~EpetraGenOp () | |
| Destructor.   | |
| void | Apply (const MultiVec< double > &X, MultiVec< double > &Y) const | 
| Apply method [inherited from Anasazi::Operator class].   | |
| int | Apply (const Epetra_MultiVector &X, Epetra_MultiVector &Y) const | 
| Apply method [inherited from Epetra_Operator class].   | |
| int | ApplyInverse (const Epetra_MultiVector &X, Epetra_MultiVector &Y) const | 
| Apply inverse method [inherited from Epetra_Operator class].   | |
| const char * | Label () const | 
| Returns a character string describing the operator.   | |
| bool | UseTranspose () const | 
| Returns the current UseTranspose setting [always false for this operator].   | |
| int | SetUseTranspose (bool) | 
| If set true, the transpose of this operator will be applied [not functional for this operator].   | |
| bool | HasNormInf () const | 
| Returns true if this object can provide an approximate inf-norm [always false for this operator].   | |
| double | NormInf () const | 
| Returns the infinity norm of the global matrix [not functional for this operator].   | |
| const Epetra_Comm & | Comm () const | 
| Returns the Epetra_Comm communicator associated with this operator.   | |
| const Epetra_Map & | OperatorDomainMap () const | 
| Returns the Epetra_Map object associated with the domain of this operator.   | |
| const Epetra_Map & | OperatorRangeMap () const | 
| Returns the Epetra_Map object associated with the range of this operator.   | |
  Public Member Functions inherited from Anasazi::Operator< double > | |
| Operator () | |
| Default constructor.   | |
| virtual | ~Operator () | 
| Destructor.   | |
Adapter class for creating an operators often used in solving generalized eigenproblems.
This class will apply the operation 

Apply method of the Epetra_Operator / Anasazi::Operator. The Anasazi::EpetraGenOp operator is useful when spectral transformations are used within eigensolvers. For instance, 

Definition at line 364 of file AnasaziEpetraAdapter.hpp.
| Anasazi::EpetraGenOp::EpetraGenOp | ( | const Teuchos::RCP< Epetra_Operator > & | AOp, | 
| const Teuchos::RCP< Epetra_Operator > & | MOp, | ||
| bool | isAInverse = true  | 
        ||
| ) | 
Basic constructor for applying operator 

If isAInverse is true this operator will apply 

Definition at line 276 of file AnasaziEpetraAdapter.cpp.
| Anasazi::EpetraGenOp::~EpetraGenOp | ( | ) | 
Destructor.
Definition at line 283 of file AnasaziEpetraAdapter.cpp.
      
  | 
  virtual | 
Apply method [inherited from Anasazi::Operator class].
This method will apply 

X, returning Y. 
Implements Anasazi::Operator< double >.
Definition at line 289 of file AnasaziEpetraAdapter.cpp.
| int Anasazi::EpetraGenOp::Apply | ( | const Epetra_MultiVector & | X, | 
| Epetra_MultiVector & | Y | ||
| ) | const | 
Apply method [inherited from Epetra_Operator class].
This method will apply 

X, returning Y. 
Definition at line 321 of file AnasaziEpetraAdapter.cpp.
| int Anasazi::EpetraGenOp::ApplyInverse | ( | const Epetra_MultiVector & | X, | 
| Epetra_MultiVector & | Y | ||
| ) | const | 
Apply inverse method [inherited from Epetra_Operator class].
This method will apply 

X, returning Y. 
Definition at line 342 of file AnasaziEpetraAdapter.cpp.
      
  | 
  inline | 
Returns a character string describing the operator.
Definition at line 393 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns the current UseTranspose setting [always false for this operator].
Definition at line 396 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
If set true, the transpose of this operator will be applied [not functional for this operator].
Definition at line 399 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns true if this object can provide an approximate inf-norm [always false for this operator].
Definition at line 402 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns the infinity norm of the global matrix [not functional for this operator].
Definition at line 405 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns the Epetra_Comm communicator associated with this operator.
Definition at line 408 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns the Epetra_Map object associated with the domain of this operator.
Definition at line 411 of file AnasaziEpetraAdapter.hpp.
      
  | 
  inline | 
Returns the Epetra_Map object associated with the range of this operator.
Definition at line 414 of file AnasaziEpetraAdapter.hpp.