#include <Thyra_DefaultBlockedTriangularLinearOpWithSolveFactoryDecl.hpp>
Inheritance diagram for Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >:

Overridden from Constructors/Initializers/Accessors | |
| DefaultBlockedTriangularLinearOpWithSolveFactory (const RCP< LinearOpWithSolveFactoryBase< Scalar > > &lowsf) | |
| Create given a single non-const LOWSFB object. | |
| DefaultBlockedTriangularLinearOpWithSolveFactory (const RCP< const LinearOpWithSolveFactoryBase< Scalar > > &lowsf) | |
| Create given a single const LOWSFB object. | |
| RCP< LinearOpWithSolveFactoryBase< Scalar > > | getUnderlyingLOWSF () |
| | |
| RCP< const LinearOpWithSolveFactoryBase< Scalar > > | getUnderlyingLOWSF () 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 |
| | |
Overridden from LinearOpWithSolveFactoyBase | |
| 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 . | |
This class takes any upper or lower triangular PhysicallyBlockedLinearOpBase object and compatible LinearOpWithSolveFactoryBase object(s) and creates a LOWSB version by creating LOWSB objects along the diagonal.
For example, consider the lower block triangular linear operator:
[ M(0,0) ]
M = [ M(1,0) M(1,1) ]
[ M(2,0) M(2,1) M(2,2) ]
This class object will then create a new LOWSB object (of type DefaultBlockedTriangularLinearOpWithSolve) that looks like:
[ invM(0,0) ]
invM = [ M(1,0) invM(1,1) ]
[ M(2,0) M(2,1) invM(2,2) ]
where invM(k,k) are LOWSB objects created from the LOB objects M(k,k) given a LOWSFB object.
This class is not very compliciated, see the function initializeOp() see what this class actually does!
ToDo: Finish Documentation!
Definition at line 79 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactoryDecl.hpp.
| Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::DefaultBlockedTriangularLinearOpWithSolveFactory | ( | const RCP< LinearOpWithSolveFactoryBase< Scalar > > & | lowsf | ) |
Create 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. |
!is_null(lowsf) Definition at line 48 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::DefaultBlockedTriangularLinearOpWithSolveFactory | ( | const RCP< const LinearOpWithSolveFactoryBase< Scalar > > & | lowsf | ) |
Create 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. |
!is_null(lowsf) Definition at line 60 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| RCP< LinearOpWithSolveFactoryBase< Scalar > > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getUnderlyingLOWSF | ( | ) |
| RCP< const LinearOpWithSolveFactoryBase< Scalar > > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getUnderlyingLOWSF | ( | ) | const |
| std::string Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::description | ( | ) | const [virtual] |
Reimplemented from Teuchos::Describable.
Definition at line 92 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::setParameterList | ( | RCP< ParameterList > const & | paramList | ) |
| RCP< ParameterList > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getNonconstParameterList | ( | ) | [virtual] |
Implements Teuchos::ParameterListAcceptor.
Definition at line 121 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| RCP< ParameterList > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::unsetParameterList | ( | ) | [virtual] |
Implements Teuchos::ParameterListAcceptor.
Definition at line 129 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| RCP< const ParameterList > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getParameterList | ( | ) | const [virtual] |
Reimplemented from Teuchos::ParameterListAcceptor.
Definition at line 137 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| RCP< const ParameterList > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getValidParameters | ( | ) | const [virtual] |
Reimplemented from Teuchos::ParameterListAcceptor.
Definition at line 145 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| bool Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::acceptsPreconditionerFactory | ( | ) | const [virtual] |
returns false.
Reimplemented from Thyra::LinearOpWithSolveFactoryBase< Scalar >.
Definition at line 155 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::setPreconditionerFactory | ( | const RCP< PreconditionerFactoryBase< Scalar > > & | precFactory, | |
| const std::string & | precFactoryName | |||
| ) | [virtual] |
Throws exception.
Definition at line 162 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| RCP< PreconditionerFactoryBase< Scalar > > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::getPreconditionerFactory | ( | ) | const [virtual] |
Returns null .
Reimplemented from Thyra::LinearOpWithSolveFactoryBase< Scalar >.
Definition at line 174 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::unsetPreconditionerFactory | ( | RCP< PreconditionerFactoryBase< Scalar > > * | precFactory, | |
| std::string * | precFactoryName | |||
| ) | [virtual] |
Throws exception.
Definition at line 181 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| bool Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::isCompatible | ( | const LinearOpSourceBase< Scalar > & | fwdOpSrc | ) | const [virtual] |
| RCP< LinearOpWithSolveBase< Scalar > > Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::createOp | ( | ) | const [virtual] |
Implements Thyra::LinearOpWithSolveFactoryBase< Scalar >.
Definition at line 203 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::initializeOp | ( | const RCP< const LinearOpSourceBase< Scalar > > & | fwdOpSrc, | |
| LinearOpWithSolveBase< Scalar > * | Op, | |||
| const ESupportSolveUse | supportSolveUse | |||
| ) | const [virtual] |
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::initializeAndReuseOp | ( | const RCP< const LinearOpSourceBase< Scalar > > & | fwdOpSrc, | |
| LinearOpWithSolveBase< Scalar > * | Op | |||
| ) | const [virtual] |
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::uninitializeOp | ( | LinearOpWithSolveBase< Scalar > * | Op, | |
| RCP< const LinearOpSourceBase< Scalar > > * | fwdOpSrc, | |||
| RCP< const PreconditionerBase< Scalar > > * | prec, | |||
| RCP< const LinearOpSourceBase< Scalar > > * | approxFwdOpSrc, | |||
| ESupportSolveUse * | supportSolveUse | |||
| ) | const [virtual] |
| bool Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::supportsPreconditionerInputType | ( | const EPreconditionerInputType | precOpType | ) | const [virtual] |
Reimplemented from Thyra::LinearOpWithSolveFactoryBase< Scalar >.
Definition at line 325 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::initializePreconditionedOp | ( | const RCP< const LinearOpSourceBase< Scalar > > & | fwdOpSrc, | |
| const RCP< const PreconditionerBase< Scalar > > & | prec, | |||
| LinearOpWithSolveBase< Scalar > * | Op, | |||
| const ESupportSolveUse | supportSolveUse | |||
| ) | const [virtual] |
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::initializeApproxPreconditionedOp | ( | const RCP< const LinearOpSourceBase< Scalar > > & | fwdOpSrc, | |
| const RCP< const LinearOpSourceBase< Scalar > > & | approxFwdOpSrc, | |||
| LinearOpWithSolveBase< Scalar > * | Op, | |||
| const ESupportSolveUse | supportSolveUse | |||
| ) | const [virtual] |
| void Thyra::DefaultBlockedTriangularLinearOpWithSolveFactory< Scalar >::informUpdatedVerbosityState | ( | ) | const [protected, virtual] |
Overridden from Teuchos::VerboseObjectBase .
Reimplemented from Teuchos::VerboseObjectBase.
Definition at line 368 of file Thyra_DefaultBlockedTriangularLinearOpWithSolveFactory.hpp.
1.4.7