|
Tempus Version of the Day
Time Integration
|
A LinearOpWithSolveFactory that is designed to reuse an already created/initialized preconditioner. More...
#include <Thyra_ReuseLinearOpWithSolveFactory.hpp>
Related Symbols | |
(Note that these are not member symbols.) | |
| template<class Scalar > | |
| RCP< ReuseLinearOpWithSolveFactory< Scalar > > | nonconstReuseLinearOpWithSolveFactory (const RCP< LinearOpWithSolveFactoryBase< Scalar > > &lowsf, const RCP< PreconditionerBase< Scalar > > &prec) |
| Nonmember constructor. | |
| template<class Scalar > | |
| RCP< ReuseLinearOpWithSolveFactory< Scalar > > | reuseLinearOpWithSolveFactory (const RCP< const LinearOpWithSolveFactoryBase< Scalar > > &lowsf, const RCP< PreconditionerBase< Scalar > > &prec) |
| Nonmember constructor. | |
Overridden from LinearOpWithSolveFactoyBase | |
| typedef Teuchos::ConstNonconstObjectContainer< LinearOpWithSolveFactoryBase< Scalar > > | LOWSF_t |
| LOWSF_t | lowsf_ |
| RCP< PreconditionerBase< Scalar > > | prec_ |
| virtual bool | acceptsPreconditionerFactory () const |
| returns false. | |
| virtual void | setPreconditionerFactory (const RCP< PreconditionerFactoryBase< Scalar > > &precFactory, const std::string &precFactoryName) |
| Throws exception. | |
| virtual RCP< PreconditionerFactoryBase< Scalar > > | getPreconditionerFactory () const |
| Returns null . | |
| virtual void | unsetPreconditionerFactory (RCP< PreconditionerFactoryBase< Scalar > > *precFactory, std::string *precFactoryName) |
| Throws exception. | |
| virtual bool | isCompatible (const LinearOpSourceBase< Scalar > &fwdOpSrc) const |
| virtual RCP< LinearOpWithSolveBase< Scalar > > | createOp () const |
| virtual void | initializeOp (const RCP< const LinearOpSourceBase< Scalar > > &fwdOpSrc, LinearOpWithSolveBase< Scalar > *Op, const ESupportSolveUse supportSolveUse) const |
| virtual void | initializeAndReuseOp (const RCP< const LinearOpSourceBase< Scalar > > &fwdOpSrc, LinearOpWithSolveBase< Scalar > *Op) const |
| virtual void | uninitializeOp (LinearOpWithSolveBase< Scalar > *Op, RCP< const LinearOpSourceBase< Scalar > > *fwdOpSrc, RCP< const PreconditionerBase< Scalar > > *prec, RCP< const LinearOpSourceBase< Scalar > > *approxFwdOpSrc, ESupportSolveUse *supportSolveUse) const |
| virtual bool | supportsPreconditionerInputType (const EPreconditionerInputType precOpType) const |
| virtual void | initializePreconditionedOp (const RCP< const LinearOpSourceBase< Scalar > > &fwdOpSrc, const RCP< const PreconditionerBase< Scalar > > &prec, LinearOpWithSolveBase< Scalar > *Op, const ESupportSolveUse supportSolveUse) const |
| virtual void | initializeApproxPreconditionedOp (const RCP< const LinearOpSourceBase< Scalar > > &fwdOpSrc, const RCP< const LinearOpSourceBase< Scalar > > &approxFwdOpSrc, LinearOpWithSolveBase< Scalar > *Op, const ESupportSolveUse supportSolveUse) const |
| void | informUpdatedVerbosityState () const |
| Overridden from Teuchos::VerboseObjectBase. | |
Overridden from Constructors/Initializers/Accessors | |
| ReuseLinearOpWithSolveFactory () | |
| Construct to uninitialized. | |
| void | nonconstInitialize (const RCP< LinearOpWithSolveFactoryBase< Scalar > > &lowsf, const RCP< PreconditionerBase< Scalar > > &prec) |
| Initialize given a single non-const LOWSFB object. | |
| void | initialize (const RCP< const LinearOpWithSolveFactoryBase< Scalar > > &lowsf, const RCP< PreconditionerBase< Scalar > > &prec) |
| Initialize given a single const LOWSFB object. | |
| RCP< LinearOpWithSolveFactoryBase< Scalar > > | getUnderlyingLOWSF () |
| RCP< const LinearOpWithSolveFactoryBase< Scalar > > | getUnderlyingLOWSF () const |
| RCP< PreconditionerBase< Scalar > > | getUnderlyingPreconditioner () |
| RCP< const PreconditionerBase< Scalar > > | getUnderlyingPreconditioner () const |
Overridden from Teuchos::Describable. | |
| std::string | description () const |
Overridden from ParameterListAcceptor (simple forwarding functions) | |
| void | setParameterList (RCP< ParameterList > const ¶mList) |
| RCP< ParameterList > | getNonconstParameterList () |
| RCP< ParameterList > | unsetParameterList () |
| RCP< const ParameterList > | getParameterList () const |
| RCP< const ParameterList > | getValidParameters () const |
A LinearOpWithSolveFactory that is designed to reuse an already created/initialized preconditioner.
Definition at line 22 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
private |
Definition at line 157 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
inline |
Construct to uninitialized.
Definition at line 29 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| void Thyra::ReuseLinearOpWithSolveFactory< Scalar >::nonconstInitialize | ( | const RCP< LinearOpWithSolveFactoryBase< Scalar > > & | lowsf, |
| const RCP< PreconditionerBase< Scalar > > & | prec | ||
| ) |
Initialize given a single non-const LOWSFB object.
| lowsf | [in,persisting] The LOWSFB object that will be used to create the LOWSB object for the diagonal blocks. |
| prec | [?] Description. |
Preconditions:
!is_null(lowsf) Definition at line 197 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| void Thyra::ReuseLinearOpWithSolveFactory< Scalar >::initialize | ( | const RCP< const LinearOpWithSolveFactoryBase< Scalar > > & | lowsf, |
| const RCP< PreconditionerBase< Scalar > > & | prec | ||
| ) |
Initialize given a single const LOWSFB object.
| lowsf | [in,persisting] The LOWSFB object that will be used to create the LOWSB object for the diagonal blocks. |
| prec | [?] Description. |
Preconditions:
!is_null(lowsf) Definition at line 210 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< LinearOpWithSolveFactoryBase< Scalar > > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getUnderlyingLOWSF | ( | ) |
Definition at line 224 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< const LinearOpWithSolveFactoryBase< Scalar > > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getUnderlyingLOWSF | ( | ) | const |
Definition at line 231 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< PreconditionerBase< Scalar > > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getUnderlyingPreconditioner | ( | ) |
Definition at line 238 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< const PreconditionerBase< Scalar > > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getUnderlyingPreconditioner | ( | ) | const |
Definition at line 245 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| std::string Thyra::ReuseLinearOpWithSolveFactory< Scalar >::description | ( | ) | const |
Definition at line 253 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| void Thyra::ReuseLinearOpWithSolveFactory< Scalar >::setParameterList | ( | RCP< ParameterList > const & | paramList | ) |
Definition at line 275 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< ParameterList > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getNonconstParameterList | ( | ) |
Definition at line 283 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< ParameterList > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::unsetParameterList | ( | ) |
Definition at line 289 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< const ParameterList > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getParameterList | ( | ) | const |
Definition at line 296 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
| RCP< const ParameterList > Thyra::ReuseLinearOpWithSolveFactory< Scalar >::getValidParameters | ( | ) | const |
Definition at line 303 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
returns false.
Definition at line 311 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Throws exception.
Definition at line 317 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Returns null .
Definition at line 326 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Throws exception.
Definition at line 332 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 340 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 348 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 354 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 363 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 371 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 383 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 390 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
virtual |
Definition at line 401 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
protected |
Overridden from Teuchos::VerboseObjectBase.
Definition at line 414 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
related |
Nonmember constructor.
Definition at line 169 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
related |
Nonmember constructor.
Definition at line 184 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
private |
Definition at line 159 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.
|
private |
Definition at line 160 of file Thyra_ReuseLinearOpWithSolveFactory.hpp.