42#ifndef THYRA_EPETRA_OPERATOR_WRAPPER_HPP
43#define THYRA_EPETRA_OPERATOR_WRAPPER_HPP
45#include "Thyra_LinearOpBase.hpp"
46#include "Epetra_Map.h"
47#include "Epetra_Comm.h"
48#include "Epetra_MultiVector.h"
49#include "Epetra_Operator.h"
95 useTranspose_ = UseTranspose_in;
109 const char*
Label()
const {
return label_.c_str();}
153RCP<const LinearOpBase<double> >
Implements the Epetra_Operator interface with a Thyra LinearOperator.
void copyEpetraIntoThyra(const Epetra_MultiVector &x, const Ptr< VectorBase< double > > &thyraVec) const
const Epetra_Map & OperatorRangeMap() const
int SetUseTranspose(bool UseTranspose_in)
int ApplyInverse(const Epetra_MultiVector &X, Epetra_MultiVector &Y) const
const Epetra_Map & OperatorDomainMap() const
bool UseTranspose() const
RCP< const LinearOpBase< double > > makeEpetraWrapper(const RCP< const LinearOpBase< double > > &thyraOp)
Wrap a Thyra operator in the Epetra_Operator interface, and then wrap it again in a Thyra operator in...
RCP< const LinearOpBase< double > > getThyraOp() const
const char * Label() const
EpetraOperatorWrapper(const RCP< const LinearOpBase< double > > &thyraOp)
const Epetra_Comm & Comm() const
void copyThyraIntoEpetra(const VectorBase< double > &thyraVec, Epetra_MultiVector &x) const
int Apply(const Epetra_MultiVector &X, Epetra_MultiVector &Y) const
Base class for all linear operators.
Abstract interface for finite-dimensional dense vectors.