10#include "Thyra_EpetraExtDiagScalingTransformer.hpp"
11#include "Thyra_MultipliedLinearOpBase.hpp"
12#include "Thyra_DiagonalLinearOpBase.hpp"
13#include "Thyra_ScaledAdjointLinearOpBase.hpp"
14#include "Thyra_EpetraLinearOp.hpp"
15#include "Thyra_get_Epetra_Operator.hpp"
17#include "Epetra_Map.h"
18#include "Epetra_LocalMap.h"
19#include "Epetra_SerialComm.h"
20#include "Epetra_CrsMatrix.h"
21#include "Teuchos_Assert.hpp"
22#include "Teuchos_RCP.hpp"
36 using Teuchos::rcp_dynamic_cast;
40 dyn_cast<const MultipliedLinearOpBase<double> >(op_in);
52 if(transp!=
NOTRANS)
return false;
57 if(transp!=
NOTRANS)
return false;
61 = rcp_dynamic_cast<const DiagonalLinearOpBase<double> >(A);
63 = rcp_dynamic_cast<const DiagonalLinearOpBase<double> >(B);
78 return nonconstEpetraLinearOp();
88 using Teuchos::rcp_dynamic_cast;
96 dyn_cast<const MultipliedLinearOpBase<double> >(op_in);
102 double A_scalar = 0.0;
105 unwrap( op_A, &A_scalar, &A_transp, &A );
110 double B_scalar = 0.0;
113 unwrap( op_B, &B_scalar, &B_transp, &B );
122 = rcp_dynamic_cast<const DiagonalLinearOpBase<double> >(A);
124 = rcp_dynamic_cast<const DiagonalLinearOpBase<double> >(B);
129 bool exactly_one_op_must_be_diagonal__dB_neq_null = dB!=
Teuchos::null;
133 epetra_A = rcp_dynamic_cast<const Epetra_CrsMatrix>(get_Epetra_Operator(*A),
true);
136 bool exactly_one_op_must_be_diagonal__dA_neq_null = dA!=
Teuchos::null;
140 epetra_B = rcp_dynamic_cast<const Epetra_CrsMatrix>(get_Epetra_Operator(*B),
true);
143 bool exactly_one_op_must_be_diagonal=
false;
152 EpetraLinearOp & thyra_epetra_op_inout = dyn_cast<EpetraLinearOp>(*op_inout);
154 rcp_dynamic_cast<Epetra_CrsMatrix>(thyra_epetra_op_inout.
epetra_op());
166 *epetra_op = *epetra_A;
167 epetra_op->RightScale(*v);
177 *epetra_op = *epetra_B;
178 epetra_op->LeftScale(*v);
181 epetra_op->Scale(A_scalar*B_scalar);
Concrete LinearOpBase adapter subclass for Epetra_Operator object.
void initialize(const RCP< Epetra_Operator > &op, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null)
Fully initialize.
RCP< Epetra_Operator > epetra_op()
Base class for all linear operators.
Interface class for implicitly multiplied linear operators.
virtual int numOps() const =0
Returns the number of constituent operators.
virtual Teuchos::RCP< const LinearOpBase< Scalar > > getOp(const int k) const =0
Return the kth constant constituent operator.
RCP< Epetra_Vector > get_Epetra_Vector(const Epetra_Map &map, const RCP< VectorBase< double > > &v)
Get a non-const Epetra_Vector view from a non-const VectorBase object if possible.
#define TEUCHOS_ASSERT(assertion_test)
void unwrap(const LinearOpBase< Scalar > &Op, Scalar *scalar, EOpTransp *transp, const LinearOpBase< Scalar > **origOp)
Extract the overallScalar, overallTransp and const origOp from a const LinearOpBase object.
EOpTransp
Enumeration for determining how a linear operator is applied. `*.
@ NOTRANS
Use the non-transposed operator.
@ CONJTRANS
Use the transposed operator with complex-conjugate clements (same as TRANS for real scalar types).
T_To & dyn_cast(T_From &from)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)