00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef __Teko_PreconditionerLinearOpDecl_hpp__
00048 #define __Teko_PreconditionerLinearOpDecl_hpp__
00049
00050 #include "Thyra_LinearOpBase.hpp"
00051 #include "Thyra_PreconditionerBase.hpp"
00052 #include "Thyra_VectorSpaceBase.hpp"
00053
00054 #include "Teuchos_ConstNonconstObjectContainer.hpp"
00055
00056 namespace Teko {
00057
00065 template <typename ScalarT>
00066 class PreconditionerLinearOp : public Thyra::LinearOpBase<ScalarT> {
00067 public:
00068 PreconditionerLinearOp();
00069 PreconditionerLinearOp(const Teuchos::RCP<Thyra::PreconditionerBase<ScalarT> > & prec);
00070 PreconditionerLinearOp(const Teuchos::RCP<const Thyra::PreconditionerBase<ScalarT> > & prec);
00071
00073 void initialize(const Teuchos::RCP<Thyra::PreconditionerBase<ScalarT> > & prec);
00074
00076 void initialize(const Teuchos::RCP<const Thyra::PreconditionerBase<ScalarT> > & prec);
00077
00079 void uninitialize();
00080
00082 virtual Teuchos::RCP<const Thyra::VectorSpaceBase<ScalarT> > range() const;
00083
00085 virtual Teuchos::RCP<const Thyra::VectorSpaceBase<ScalarT> > domain() const;
00086
00087 virtual bool opSupportedImpl(const Thyra::EOpTransp M_trans) const;
00088
00090 virtual void applyImpl(
00091 const Thyra::EOpTransp M_trans,
00092 const Thyra::MultiVectorBase<ScalarT> & x,
00093 const Teuchos::Ptr<Thyra::MultiVectorBase<ScalarT> > & y,
00094 const ScalarT alpha,
00095 const ScalarT beta
00096 ) const;
00097
00099 virtual Teuchos::RCP<Thyra::PreconditionerBase<ScalarT> > getNonconstPreconditioner();
00100
00102 virtual Teuchos::RCP<const Thyra::PreconditionerBase<ScalarT> > getPreconditioner() const;
00103
00105 Teko::LinearOp getOperator() const { return getOperator_cnoc().getConstObj(); }
00106
00107
00108 void describe(Teuchos::FancyOStream & out_arg,const Teuchos::EVerbosityLevel verbLevel) const;
00109 protected:
00111 Teuchos::ConstNonconstObjectContainer<Thyra::LinearOpBase<ScalarT> > getOperator_cnoc() const;
00112
00114 Teuchos::ConstNonconstObjectContainer<Thyra::LinearOpBase<ScalarT> > getOperator_cnoc();
00115
00116 Teuchos::ConstNonconstObjectContainer<Thyra::PreconditionerBase<ScalarT> > preconditioner_;
00117 };
00118
00131 inline Teko::LinearOp extractOperatorFromPrecOp(const Teko::LinearOp & lo);
00132
00133 }
00134
00135 #endif