10 #ifndef THYRA_PRECONDITIONER_FACTORY_BASE_DECL_HPP
11 #define THYRA_PRECONDITIONER_FACTORY_BASE_DECL_HPP
13 #include "Thyra_PreconditionerBase.hpp"
14 #include "Thyra_LinearOpSourceBase.hpp"
15 #include "Teuchos_Describable.hpp"
16 #include "Teuchos_ParameterListAcceptor.hpp"
17 #include "Teuchos_VerboseObject.hpp"
30 template<
class Scalar>
31 class PreconditionerFactoryBase
44 virtual bool isCompatible(
const LinearOpSourceBase<Scalar> &fwdOpSrc)
const = 0;
55 virtual RCP<PreconditionerBase<Scalar> >
createPrec()
const = 0;
128 const RCP<
const LinearOpSourceBase<Scalar> > &fwdOpSrc,
129 PreconditionerBase<Scalar> *precOp,
182 PreconditionerBase<Scalar> *
prec,
183 RCP<
const LinearOpSourceBase<Scalar> > *fwdOpSrc = NULL,
212 PreconditionerFactoryBase<Scalar>&
213 operator=(
const PreconditionerFactoryBase<Scalar>&);
221 #endif // THYRA_PRECONDITIONER_FACTORY_BASE_DECL_HPP
How the output LOWSB object will be useded for solves in unspecified.
virtual void uninitializePrec(PreconditionerBase< Scalar > *prec, RCP< const LinearOpSourceBase< Scalar > > *fwdOpSrc=NULL, ESupportSolveUse *supportSolveUse=NULL) const =0
Uninitialize a LinearOpBase preconditioner object and return its remembered forward linear operator...
virtual RCP< PreconditionerBase< Scalar > > createPrec() const =0
Create an (uninitialized) LinearOpBase object to be initialized as the preconditioner later in this->...
Teuchos::RCP< PreconditionerBase< Scalar > > prec(const PreconditionerFactoryBase< Scalar > &precFactory, const Teuchos::RCP< const LinearOpBase< Scalar > > &fwdOp, const ESupportSolveUse supportSolveUse=SUPPORT_SOLVE_UNSPECIFIED)
Create and initialize a preconditioner from a forward linear operator.
virtual bool applyTransposeSupportsConj(EConj conj) const
Return if precOp->solveTranspose() supports the argument conj.
virtual bool applySupportsConj(EConj conj) const
Return if precOp->apply() supports the argument conj.
virtual void initializePrec(const RCP< const LinearOpSourceBase< Scalar > > &fwdOpSrc, PreconditionerBase< Scalar > *precOp, const ESupportSolveUse supportSolveUse=SUPPORT_SOLVE_UNSPECIFIED) const =0
Initialize a pre-created LinearOpBase preconditioner object given a "compatible" LinearOpBase object...
ESupportSolveUse
Enum that specifies how a LinearOpWithSolveBase object will be used for solves after it is constructe...
EConj
Enumeration for determining how a linear operator is applied. `*.
virtual bool isCompatible(const LinearOpSourceBase< Scalar > &fwdOpSrc) const =0
Check that a LinearOpBase object is compatible with *this factory object.