|
Thyra Package Browser (Single Doxygen Collection) Version of the Day
|
Base interface for objects that can return a linear operator. More...
#include <Thyra_LinearOpSourceBase.hpp>

Pure virtual public functions that must be overridden in subclasses | |
| virtual bool | isOpConst () const =0 |
| Return if the underlying linear operator is const-only or not. | |
| virtual Teuchos::RCP < LinearOpBase< Scalar > > | getNonconstOp ()=0 |
| Return a non-const reference to the underlying linear operator. | |
| virtual Teuchos::RCP< const LinearOpBase< Scalar > > | getOp () const =0 |
| Return a const left preconditioner linear operator if one is designed or targeted to be applied on the left. | |
Base interface for objects that can return a linear operator.
Definition at line 44 of file Thyra_LinearOpSourceBase.hpp.
| virtual bool Thyra::LinearOpSourceBase< Scalar >::isOpConst | ( | ) | const [pure virtual] |
Return if the underlying linear operator is const-only or not.
Implemented in Thyra::DefaultLinearOpSource< Scalar >.
| virtual Teuchos::RCP<LinearOpBase<Scalar> > Thyra::LinearOpSourceBase< Scalar >::getNonconstOp | ( | ) | [pure virtual] |
Return a non-const reference to the underlying linear operator.
Preconditions:
isOpConst()==true] getOp().get()==NULL Implemented in Thyra::DefaultLinearOpSource< Scalar >.
| virtual Teuchos::RCP<const LinearOpBase<Scalar> > Thyra::LinearOpSourceBase< Scalar >::getOp | ( | ) | const [pure virtual] |
Return a const left preconditioner linear operator if one is designed or targeted to be applied on the left.
Implemented in Thyra::DefaultLinearOpSource< Scalar >.
Referenced by Thyra::DiagonalEpetraLinearOpWithSolveFactory::isCompatible(), and Thyra::DefaultSerialDenseLinearOpWithSolveFactory< Scalar >::isCompatible().
1.7.4