10#ifndef XPETRA_EPETRAOPERATOR_HPP
11#define XPETRA_EPETRAOPERATOR_HPP
15#include <Epetra_Operator.h>
16#include <Epetra_Map.h>
18#include "Xpetra_Map.hpp"
20#include "Xpetra_MultiVector.hpp"
26#if defined(XPETRA_ENABLE_DEPRECATED_CODE)
28#if defined(Xpetra_SHOW_DEPRECATED_WARNINGS)
29#warning "The header file Trilinos/packages/xpetra/src/Operator/Xpetra_EpetraOperator.hpp is deprecated."
33#error "The header file Trilinos/packages/xpetra/src/Operator/Xpetra_EpetraOperator.hpp is deprecated."
38template <
class EpetraGlobalOrdinal,
class Node>
50 return toXpetra<GlobalOrdinal, Node>(op_->OperatorDomainMap());
56 return toXpetra<GlobalOrdinal, Node>(op_->OperatorRangeMap());
77 "Xpetra::EpetraOperator->apply(): can only accept mode == NO_TRANS or mode == TRANS");
79 "Xpetra::EpetraOperator->apply(): cannot apply transpose as underlying Epetra operator does not support it");
96 int err = op_->SetUseTranspose(
true);
97 op_->SetUseTranspose(
false);
109 return "Epetra_Operator";
115 out <<
"Epetra_Operator" << std::endl;
132 R.
update(STS::one(), B, STS::zero());
144template <
class EpetraGlobalOrdinal,
class Node>
156 return toXpetra<GlobalOrdinal, Node>(
op_->OperatorDomainMap());
162 return toXpetra<GlobalOrdinal, Node>(
op_->OperatorRangeMap());
183 "Xpetra::EpetraOperator->apply(): can only accept mode == NO_TRANS or mode == TRANS");
185 "Xpetra::EpetraOperator->apply(): cannot apply transpose as underlying Epetra operator does not support it");
202 int err =
op_->SetUseTranspose(
true);
203 op_->SetUseTranspose(
false);
215 return "Epetra_Operator";
221 out <<
"Epetra_Operator" << std::endl;
238 R.
update(STS::one(), B, STS::zero());
#define XPETRA_MONITOR(funcName)
#define XPETRA_ERR_CHECK(arg)
#define XPETRA_DYNAMIC_CAST(type, obj, newObj, exceptionMsg)
static const EVerbosityLevel verbLevel_default
virtual void apply(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=Teuchos::ScalarTraits< Scalar >::one(), Scalar beta=Teuchos::ScalarTraits< Scalar >::zero()) const
Computes the operator-multivector application.
RCP< Epetra_Operator > op_
The Tpetra::Operator which this class wraps.
std::string description() const
A simple one-line description of this object.
void residual(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &R) const
Compute a residual R = B - (*this) * X.
EpetraGlobalOrdinal GlobalOrdinal
virtual const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getDomainMap() const
The Map associated with the domain of this operator, which must be compatible with X....
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print the object with the given verbosity level to a FancyOStream.
EpetraInverseOperator(const Teuchos::RCP< Epetra_Operator > &op)
EpetraOperator constructor to wrap a Epetra_Operator object.
virtual bool hasTransposeApply() const
Whether this operator supports applying the transpose or conjugate transpose.
virtual const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRangeMap() const
The Map associated with the range of this operator, which must be compatible with Y....
void residual(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &R) const
Compute a residual R = B - (*this) * X.
std::string description() const
A simple one-line description of this object.
virtual const Teuchos::RCP< const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > getDomainMap() const
The Map associated with the domain of this operator, which must be compatible with X....
virtual bool hasTransposeApply() const
Whether this operator supports applying the transpose or conjugate transpose.
virtual void apply(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=Teuchos::ScalarTraits< Scalar >::one(), Scalar beta=Teuchos::ScalarTraits< Scalar >::zero()) const
Computes the operator-multivector application.
EpetraOperator(const Teuchos::RCP< Epetra_Operator > &op)
EpetraOperator constructor to wrap a Epetra_Operator object.
EpetraGlobalOrdinal GlobalOrdinal
RCP< Epetra_Operator > op_
The Tpetra::Operator which this class wraps.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print the object with the given verbosity level to a FancyOStream.
virtual const Teuchos::RCP< const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > getRangeMap() const
The Map associated with the range of this operator, which must be compatible with Y....
Exception throws when you call an unimplemented method of Xpetra.
Exception throws to report errors in the internal logical of the program.
virtual void update(const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta)=0
Update multi-vector values with scaled values of A, this = beta*this + alpha*A.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)