.
More...
#include <LOCA_Epetra_LowRankUpdateOp.H>
Inheritance diagram for LOCA::Epetra::LowRankUpdateOp:
Public Member Functions | |
| LowRankUpdateOp (const Teuchos::RefCountPtr< LOCA::GlobalData > &global_data, const Teuchos::RefCountPtr< Epetra_Operator > &jacOperator, const Teuchos::RefCountPtr< const Epetra_MultiVector > &U_multiVec, const Teuchos::RefCountPtr< const Epetra_MultiVector > &V_multiVec) | |
| Constructor. | |
| virtual | ~LowRankUpdateOp () |
| Destructor. | |
| virtual int | SetUseTranspose (bool UseTranspose) |
| Set to true if the transpose of the operator is requested. | |
| virtual int | Apply (const Epetra_MultiVector &Input, Epetra_MultiVector &Result) const |
| Returns the result of a Epetra_Operator applied to a Epetra_MultiVector Input in Result as described above. | |
| virtual int | ApplyInverse (const Epetra_MultiVector &X, Epetra_MultiVector &Y) const |
| This method does nothing. | |
| virtual double | NormInf () const |
| Returns an approximate infinity norm of the operator matrix. | |
| virtual const char * | Label () const |
| Returns a character string describing the operator. | |
| virtual bool | UseTranspose () const |
| Returns the current UseTranspose setting. Always returns false. | |
| virtual bool | HasNormInf () const |
| Returns true if the this object can provide an approximate Inf-norm, false otherwise. | |
| virtual const Epetra_Comm & | Comm () const |
| Returns a reference to the Epetra_Comm communicator associated with this operator. | |
| virtual const Epetra_Map & | OperatorDomainMap () const |
| Returns the Epetra_Map object associated with the domain of this matrix operator. | |
| virtual const Epetra_Map & | OperatorRangeMap () const |
| Returns the Epetra_Map object associated with the range of this matrix operator. | |
Protected Attributes | |
| Teuchos::RefCountPtr< LOCA::GlobalData > | globalData |
| Global data object. | |
| string | label |
| Label for operator. | |
| Epetra_LocalMap | localMap |
| Local map for generating temporary matrices. | |
| Teuchos::RefCountPtr< Epetra_Operator > | J |
| Stores operator representing J. | |
|
Teuchos::RefCountPtr< const Epetra_MultiVector > | U |
| Stores multivector representing U. | |
|
Teuchos::RefCountPtr< const Epetra_MultiVector > | V |
| Stores multivector representing V. | |
| bool | useTranspose |
| Flag indicating whether to use the transpose. | |
| Teuchos::RefCountPtr< Epetra_MultiVector > | tmpMat |
| Temporary matrix. | |
.
This class implements the Epetra_Operator interface for
where
is an Epetra_Operator and
and
are Epetra_MultiVectors.
|
||||||||||||||||||||
|
Constructor.
|
|
|
Returns an approximate infinity norm of the operator matrix.
This is defined only if NormInf() of the underlying operator Implements Epetra_Operator. Reimplemented in LOCA::Epetra::LowRankUpdateRowMatrix. |
1.3.9.1