|
Teko Version of the Day
|
00001 /* 00002 // @HEADER 00003 // 00004 // *********************************************************************** 00005 // 00006 // Teko: A package for block and physics based preconditioning 00007 // Copyright 2010 Sandia Corporation 00008 // 00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00010 // the U.S. Government retains certain rights in this software. 00011 // 00012 // Redistribution and use in source and binary forms, with or without 00013 // modification, are permitted provided that the following conditions are 00014 // met: 00015 // 00016 // 1. Redistributions of source code must retain the above copyright 00017 // notice, this list of conditions and the following disclaimer. 00018 // 00019 // 2. Redistributions in binary form must reproduce the above copyright 00020 // notice, this list of conditions and the following disclaimer in the 00021 // documentation and/or other materials provided with the distribution. 00022 // 00023 // 3. Neither the name of the Corporation nor the names of the 00024 // contributors may be used to endorse or promote products derived from 00025 // this software without specific prior written permission. 00026 // 00027 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00028 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00029 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00030 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00031 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00032 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00033 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00034 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00035 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00036 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00037 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00038 // 00039 // Questions? Contact Eric C. Cyr (eccyr@sandia.gov) 00040 // 00041 // *********************************************************************** 00042 // 00043 // @HEADER 00044 00045 */ 00046 00047 #ifndef __Teko_InverseFactory_hpp__ 00048 #define __Teko_InverseFactory_hpp__ 00049 00050 // Teuchos includes 00051 #include "Teuchos_RCP.hpp" 00052 00053 // Thyra includes 00054 #include "Thyra_LinearOpWithSolveFactoryBase.hpp" 00055 #include "Thyra_PreconditionerFactoryBase.hpp" 00056 00057 #include "Teko_Config.h" 00058 #include "Teko_Utilities.hpp" 00059 #include "Teko_PreconditionerState.hpp" 00060 #include "Teko_RequestHandler.hpp" 00061 #include "Teko_RequestHandlerContainer.hpp" 00062 00063 namespace Teko { 00064 00071 class InverseFactory : public RequestHandlerContainer { 00072 public: 00073 virtual ~InverseFactory() {} 00074 00084 virtual InverseLinearOp buildInverse(const LinearOp & linearOp) const = 0; 00085 00098 virtual InverseLinearOp buildInverse(const LinearOp & linearOp,const LinearOp & precOp) const 00099 { return buildInverse(linearOp); } 00100 00113 virtual InverseLinearOp buildInverse(const LinearOp & linearOp, const PreconditionerState & parentState) const 00114 { return buildInverse(linearOp); } 00115 00131 virtual InverseLinearOp buildInverse(const LinearOp & linearOp, const LinearOp & precOp, const PreconditionerState & parentState) const 00132 { return buildInverse(linearOp,precOp); } 00133 00145 virtual void rebuildInverse(const LinearOp & source,InverseLinearOp & dest) const = 0; 00146 00159 virtual void rebuildInverse(const LinearOp & source,const LinearOp & precOp,InverseLinearOp & dest) const 00160 { rebuildInverse(source,dest); } 00161 00170 virtual Teuchos::RCP<const Teuchos::ParameterList> getParameterList() const = 0; 00171 00173 virtual std::string toString() const = 0; 00174 00189 virtual Teuchos::RCP<Teuchos::ParameterList> getRequestedParameters() const 00190 { return Teuchos::null; } 00191 00205 virtual bool updateRequestedParameters(const Teuchos::ParameterList & pl) 00206 { return true; } 00207 00209 void setRequestHandler(const Teuchos::RCP<RequestHandler> & rh) 00210 { callbackHandler_ = rh; } 00211 00213 Teuchos::RCP<RequestHandler> getRequestHandler() const 00214 { return callbackHandler_; } 00215 00216 protected: 00218 Teuchos::RCP<RequestHandler> callbackHandler_; 00219 }; 00220 00221 class StaticOpInverseFactory : public InverseFactory { 00222 public: 00224 00225 00234 StaticOpInverseFactory(const LinearOp inv) 00235 : inverse_(inv) {} 00236 00238 StaticOpInverseFactory(const StaticOpInverseFactory & saFactory) 00239 : inverse_(saFactory.inverse_) {} 00241 00242 virtual ~StaticOpInverseFactory() {} 00243 00255 virtual InverseLinearOp buildInverse(const LinearOp & linearOp) const 00256 { return Teuchos::rcp_const_cast<Thyra::LinearOpBase<double> >(inverse_); } 00257 00272 virtual void rebuildInverse(const LinearOp & source,InverseLinearOp & dest) const 00273 { } 00274 00283 virtual Teuchos::RCP<const Teuchos::ParameterList> getParameterList() const 00284 { return Teuchos::null; } 00285 00287 virtual std::string toString() const { return inverse_->description(); } 00288 00289 protected: 00290 Teko::LinearOp inverse_; 00291 00292 private: 00293 // hide me! 00294 StaticOpInverseFactory(); 00295 }; 00296 00298 00299 00310 InverseLinearOp buildInverse(const InverseFactory & factory,const LinearOp & A); 00311 00323 InverseLinearOp buildInverse(const InverseFactory & factory,const LinearOp & A,const LinearOp & precOp); 00324 00337 InverseLinearOp buildInverse(const InverseFactory & factory,const LinearOp & linearOp, 00338 const PreconditionerState & parentState); 00339 00353 InverseLinearOp buildInverse(const InverseFactory & factory,const LinearOp & linearOp, 00354 const LinearOp & precOp, 00355 const PreconditionerState & parentState); 00356 00371 void rebuildInverse(const InverseFactory & factory, const LinearOp & A, InverseLinearOp & invA); 00372 00388 void rebuildInverse(const InverseFactory & factory, const LinearOp & A,const LinearOp & precOp, InverseLinearOp & invA); 00389 00406 Teuchos::RCP<InverseFactory> invFactoryFromParamList(const Teuchos::ParameterList & list,const std::string & type); 00407 00421 Teuchos::RCP<const Teuchos::ParameterList> invFactoryValidParameters(); 00422 00424 00425 } // end namespace Teko 00426 00427 #endif
1.7.4