Abstract Mapping strategy for an EpetraOperatorWrapper. More...
#include <Teko_EpetraOperatorWrapper.hpp>
Public Member Functions | |
virtual void | copyEpetraIntoThyra (const Epetra_MultiVector &epetraX, const Teuchos::Ptr< Thyra::MultiVectorBase< double > > &thyraX) const =0 |
Copy an Epetra_MultiVector into a Thyra::MultiVectorBase. More... | |
virtual void | copyThyraIntoEpetra (const RCP< const Thyra::MultiVectorBase< double > > &thyraX, Epetra_MultiVector &epetraX) const =0 |
Copy an Thyra::MultiVectorBase into a Epetra_MultiVector. More... | |
virtual const RCP< const Epetra_Map > | domainMap () const =0 |
Domain map for this strategy. More... | |
virtual const RCP< const Epetra_Map > | rangeMap () const =0 |
Range map for this strategy. More... | |
virtual std::string | toString () const =0 |
Identifier string. More... | |
Abstract Mapping strategy for an EpetraOperatorWrapper.
Definition at line 66 of file Teko_EpetraOperatorWrapper.hpp.
|
pure virtual |
Copy an Epetra_MultiVector into a Thyra::MultiVectorBase.
Copy an Epetra_MultiVector into a Thyra::MultiVectorBase. The exact method for copying is specified by the concrete implementations.
[in] | epetraX | Vector to be copied into the Thyra object |
[in,out] | thyraX | Destination Thyra object |
Implemented in Teko::Epetra::DefaultMappingStrategy, and Teko::Epetra::InverseMappingStrategy.
|
pure virtual |
Copy an Thyra::MultiVectorBase into a Epetra_MultiVector.
Copy an Thyra::MultiVectorBase into an Epetra_MultiVector. The exact method for copying is specified by the concrete implementations.
[in] | thyraX | Source Thyra object |
[in,out] | epetraX | Destination Epetra object |
Implemented in Teko::Epetra::DefaultMappingStrategy, and Teko::Epetra::InverseMappingStrategy.
|
pure virtual |
Domain map for this strategy.
Implemented in Teko::Epetra::DefaultMappingStrategy, and Teko::Epetra::InverseMappingStrategy.
|
pure virtual |
Range map for this strategy.
Implemented in Teko::Epetra::DefaultMappingStrategy, and Teko::Epetra::InverseMappingStrategy.
|
pure virtual |
Identifier string.
Implemented in Teko::Epetra::DefaultMappingStrategy, and Teko::Epetra::InverseMappingStrategy.