#include <Epetra_InvOperator.h>
Inheritance diagram for Epetra_InvOperator:
Public Member Functions | |
Constructor | |
| Epetra_InvOperator (Epetra_Operator *operatorIn) | |
| Uses an Epetra_Operator instance to implement the Epetra_Operator interface. | |
| virtual | ~Epetra_InvOperator () |
| Destructor. | |
Atribute set methods | |
| int | SetUseTranspose (bool UseTranspose) |
| If set true, transpose of this operator will be applied. | |
Mathematical functions | |
| int | Apply (const Epetra_MultiVector &X, Epetra_MultiVector &Y) const |
| Returns the result of a Epetra_InvOperator applied to a Epetra_MultiVector X in Y. | |
| int | ApplyInverse (const Epetra_MultiVector &X, Epetra_MultiVector &Y) const |
| Returns the result of a Epetra_InvOperator inverse applied to an Epetra_MultiVector X in Y. | |
| double | NormInf () const |
| Returns the infinity norm of the global matrix. | |
Atribute access functions | |
| const char * | Label () const |
| Returns a character string describing the operator. | |
| Epetra_Operator * | Operator () const |
| Returns a pointer to the Epetra_Operator operator object that was used to create this Epetra_InvOperator object. | |
| bool | UseTranspose () const |
| Returns the current UseTranspose setting. | |
| bool | HasNormInf () const |
| Returns true if the this object can provide an approximate Inf-norm, false otherwise. | |
| const Epetra_Comm & | Comm () const |
| Returns a pointer to the Epetra_Comm communicator associated with this operator. | |
| const Epetra_Map & | OperatorDomainMap () const |
| Returns the Epetra_BlockMap object associated with the domain of this matrix operator. | |
| const Epetra_Map & | OperatorRangeMap () const |
| Returns the Epetra_BlockMap object associated with the range of this matrix operator. | |
Protected Attributes | |
| Epetra_Operator * | operator_ |
| string | Label_ |
The Epetra_InvOperator class implements Epetra_Operator using another pre-constructed Epetra_Operator object. Once constructed, an Epetra_InvOperator can be used as the inverse of the input operator object as long as the appropriate Apply and ApplyInverse methods are implemented in the original Epetra_Operator object.
|
|
Uses an Epetra_Operator instance to implement the Epetra_Operator interface. Facilitates the use of an Epetra_Operator instance as an inverse operator.
|
|
||||||||||||
|
Returns the result of a Epetra_InvOperator applied to a Epetra_MultiVector X in Y.
Implements Epetra_Operator. |
|
||||||||||||
|
Returns the result of a Epetra_InvOperator inverse applied to an Epetra_MultiVector X in Y.
Implements Epetra_Operator. |
|
|
If set true, transpose of this operator will be applied. This flag allows the transpose of the given operator to be used implicitly. Setting this flag affects only the Apply() and ApplyInverse() methods. If the implementation of this interface does not support transpose use, this method should return a value of -1.
Implements Epetra_Operator. |
1.3.9.1