Teko  Version of the Day
 All Classes Files Functions Variables Pages
Teko_PreconditionerFactory.hpp
1 /*
2 // @HEADER
3 //
4 // ***********************************************************************
5 //
6 // Teko: A package for block and physics based preconditioning
7 // Copyright 2010 Sandia Corporation
8 //
9 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
10 // the U.S. Government retains certain rights in this software.
11 //
12 // Redistribution and use in source and binary forms, with or without
13 // modification, are permitted provided that the following conditions are
14 // met:
15 //
16 // 1. Redistributions of source code must retain the above copyright
17 // notice, this list of conditions and the following disclaimer.
18 //
19 // 2. Redistributions in binary form must reproduce the above copyright
20 // notice, this list of conditions and the following disclaimer in the
21 // documentation and/or other materials provided with the distribution.
22 //
23 // 3. Neither the name of the Corporation nor the names of the
24 // contributors may be used to endorse or promote products derived from
25 // this software without specific prior written permission.
26 //
27 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
28 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
31 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
32 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
33 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
34 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
35 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
36 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 //
39 // Questions? Contact Eric C. Cyr (eccyr@sandia.gov)
40 //
41 // ***********************************************************************
42 //
43 // @HEADER
44 
45 */
46 
47 #ifndef __Teko_PreconditionerFactory_hpp__
48 #define __Teko_PreconditionerFactory_hpp__
49 
50 #include "Teuchos_ParameterListAcceptor.hpp"
51 
52 // Thyra includes
53 #include "Thyra_SolveSupportTypes.hpp"
54 #include "Thyra_LinearOpSourceBase.hpp"
55 #include "Thyra_PreconditionerFactoryBase.hpp"
56 #include "Thyra_DefaultBlockedLinearOp.hpp"
57 #include "Thyra_DefaultPreconditioner.hpp"
58 
59 // Teko includes
60 #include "Teko_Utilities.hpp"
61 #include "Teko_InverseLibrary.hpp"
62 #include "Teko_CloneFactory.hpp"
63 #include "Teko_PreconditionerState.hpp"
64 #include "Teko_RequestHandler.hpp"
65 #include "Teko_RequestHandlerContainer.hpp"
66 
67 namespace Teko {
68 
69 using Thyra::DefaultPreconditioner;
70 using Thyra::LinearOpBase;
71 
82 class PreconditionerFactory : public virtual Thyra::PreconditionerFactoryBase<double>,
84  public:
98  virtual LinearOp buildPreconditionerOperator(LinearOp &lo, PreconditionerState &state) const = 0;
99 
112  virtual Teuchos::RCP<PreconditionerState> buildPreconditionerState() const {
113  return Teuchos::rcp(new PreconditionerState());
114  }
115 
117 
118 
131  virtual void initializeFromParameterList(const Teuchos::ParameterList & /* settings */) {}
132 
147  virtual Teuchos::RCP<Teuchos::ParameterList> getRequestedParameters() const {
148  return Teuchos::null;
149  }
150 
164  virtual bool updateRequestedParameters(const Teuchos::ParameterList & /* pl */) { return true; }
165 
167 
169  void setInverseLibrary(const Teuchos::RCP<const InverseLibrary> &il);
170 
172  Teuchos::RCP<const InverseLibrary> getInverseLibrary() const;
173 
175 
176 
178  bool isCompatible(const Thyra::LinearOpSourceBase<double> &fwdOpSrc) const;
179 
181  Teuchos::RCP<Thyra::PreconditionerBase<double> > createPrec() const;
182 
193  void initializePrec(const Teuchos::RCP<const Thyra::LinearOpSourceBase<double> > &fwdOpSrc,
194  const Teuchos::RCP<const Thyra::MultiVectorBase<double> > &solnVec,
195  Thyra::PreconditionerBase<double> *precOp,
196  const Thyra::ESupportSolveUse supportSolveUse) const;
197 
199  void initializePrec(const Teuchos::RCP<const Thyra::LinearOpSourceBase<double> > &fwdOpSrc,
200  Thyra::PreconditionerBase<double> *precOp,
201  const Thyra::ESupportSolveUse supportSolveUse) const;
202 
204  void uninitializePrec(Thyra::PreconditionerBase<double> *prec,
205  Teuchos::RCP<const Thyra::LinearOpSourceBase<double> > *fwdOpSrc,
206  Thyra::ESupportSolveUse *supportSolveUse) const;
208 
210 
211 
213  void setParameterList(const Teuchos::RCP<Teuchos::ParameterList> &paramList);
214 
216  Teuchos::RCP<Teuchos::ParameterList> getNonconstParameterList();
217 
219  Teuchos::RCP<Teuchos::ParameterList> unsetParameterList();
221 
223  void setRequestHandler(const Teuchos::RCP<RequestHandler> &rh) { callbackHandler_ = rh; }
224 
226  Teuchos::RCP<RequestHandler> getRequestHandler() const { return callbackHandler_; }
227 
228  protected:
230  Teuchos::RCP<Teuchos::ParameterList> paramList_;
231 
233  Teuchos::RCP<RequestHandler> callbackHandler_;
234 
235  private:
237  Teuchos::RCP<const InverseLibrary> inverseLibrary_;
238 
240  static void setOpRequestHandler(const RequestHandlerContainer &rhc, const LinearOp &op);
241 
242  public:
257  static Teuchos::RCP<PreconditionerFactory> buildPreconditionerFactory(
258  const std::string &name, const Teuchos::ParameterList &settings,
259  const Teuchos::RCP<const InverseLibrary> &invLib = Teuchos::null);
260 
274  static void addPreconditionerFactory(const std::string &name,
275  const Teuchos::RCP<Cloneable> &clone);
276 
279  static void getPreconditionerFactoryNames(std::vector<std::string> &names);
280 
281  private:
283  static CloneFactory<PreconditionerFactory> precFactoryBuilder_;
284 
286  static void initializePrecFactoryBuilder();
287 };
288 
289 } // end namespace Teko
290 
291 #endif
virtual void initializeFromParameterList(const Teuchos::ParameterList &)
This function builds the internals of the preconditioner factory from a parameter list...
static void getPreconditionerFactoryNames(std::vector< std::string > &names)
Get the names of the block preconditioner factories.
Teuchos::RCP< Teuchos::ParameterList > getNonconstParameterList()
Get the parameter list that was set using setParameterList().
Abstract class which block preconditioner factories in Teko should be based on.
Teuchos::RCP< Teuchos::ParameterList > paramList_
for ParameterListAcceptor
void setParameterList(const Teuchos::RCP< Teuchos::ParameterList > &paramList)
Set parameters from a parameter list and return with default values.
void uninitializePrec(Thyra::PreconditionerBase< double > *prec, Teuchos::RCP< const Thyra::LinearOpSourceBase< double > > *fwdOpSrc, Thyra::ESupportSolveUse *supportSolveUse) const
wipe clean a already initialized preconditioner object
virtual bool updateRequestedParameters(const Teuchos::ParameterList &)
Update this object with the fields from a parameter list.
Teuchos::RCP< Teuchos::ParameterList > unsetParameterList()
Unset the parameter list that was set using setParameterList().
void setRequestHandler(const Teuchos::RCP< RequestHandler > &rh)
Set the request handler with pointers to the appropriate callbacks.
static void addPreconditionerFactory(const std::string &name, const Teuchos::RCP< Cloneable > &clone)
Add a preconditioner factory to the builder. This is done using the clone pattern.
Teuchos::RCP< RequestHandler > callbackHandler_
For handling requests and send requests back to the user.
void setInverseLibrary(const Teuchos::RCP< const InverseLibrary > &il)
Set the inverse library used by this preconditioner factory.
virtual LinearOp buildPreconditionerOperator(LinearOp &lo, PreconditionerState &state) const =0
Function that is called to build the preconditioner for the linear operator that is passed in...
bool isCompatible(const Thyra::LinearOpSourceBase< double > &fwdOpSrc) const
is this operator compatiable with the preconditioner factory?
Teuchos::RCP< const InverseLibrary > getInverseLibrary() const
Get the inverse library used by this preconditioner factory.
void initializePrec(const Teuchos::RCP< const Thyra::LinearOpSourceBase< double > > &fwdOpSrc, const Teuchos::RCP< const Thyra::MultiVectorBase< double > > &solnVec, Thyra::PreconditionerBase< double > *precOp, const Thyra::ESupportSolveUse supportSolveUse) const
initialize a newly created preconditioner object
Teuchos::RCP< Thyra::PreconditionerBase< double > > createPrec() const
create an instance of the preconditioner
virtual Teuchos::RCP< Teuchos::ParameterList > getRequestedParameters() const
Request the additional parameters this preconditioner factory needs.
An implementation of a state object preconditioners.
Teuchos::RCP< RequestHandler > getRequestHandler() const
Get the request handler with pointers to the appropriate callbacks.
virtual Teuchos::RCP< PreconditionerState > buildPreconditionerState() const
Function that permits the construction of an arbitrary PreconditionerState object.
static Teuchos::RCP< PreconditionerFactory > buildPreconditionerFactory(const std::string &name, const Teuchos::ParameterList &settings, const Teuchos::RCP< const InverseLibrary > &invLib=Teuchos::null)
Builder function for creating preconditioner factories (yes this is a factory factory).