/usr/include/trilinos/Teko_PreconditionerFactory.hpp is in libtrilinos-teko-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | /*
// @HEADER
//
// ***********************************************************************
//
// Teko: A package for block and physics based preconditioning
// Copyright 2010 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Eric C. Cyr (eccyr@sandia.gov)
//
// ***********************************************************************
//
// @HEADER
*/
#ifndef __Teko_PreconditionerFactory_hpp__
#define __Teko_PreconditionerFactory_hpp__
#include "Teuchos_ParameterListAcceptor.hpp"
// Thyra includes
#include "Thyra_SolveSupportTypes.hpp"
#include "Thyra_LinearOpSourceBase.hpp"
#include "Thyra_PreconditionerFactoryBase.hpp"
#include "Thyra_DefaultBlockedLinearOp.hpp"
#include "Thyra_DefaultPreconditioner.hpp"
// Teko includes
#include "Teko_Utilities.hpp"
#include "Teko_InverseLibrary.hpp"
#include "Teko_CloneFactory.hpp"
#include "Teko_PreconditionerState.hpp"
#include "Teko_RequestHandler.hpp"
#include "Teko_RequestHandlerContainer.hpp"
namespace Teko {
using Thyra::LinearOpBase;
using Thyra::DefaultPreconditioner;
/** \brief Abstract class which block preconditioner factories in Teko
* should be based on.
*
* Abstract class which block preconditioner factories in Teko should
* be based on. All that is needed is the implementation of
* "buildPreconditionerOperator". This class also uses the
* <code>RequestHandler</code> concrete interface. This is useful for
* extracting information from the user in an unobtrusive and modular
* way.
*/
class PreconditionerFactory
: public virtual Thyra::PreconditionerFactoryBase<double>, public RequestHandlerContainer
{
public:
/** \brief Function that is called to build the preconditioner
* for the linear operator that is passed in.
*
* This function builds a preconditioner based on the passed
* in LinearOp.
*
* \param[in] lo Source linear operator that is to be preconditioned.
* \param[in] state An object associated with this operator to store
* the preconditioner state.
*
* \returns The preconditioner as a linear operator (i.e. to perform
* a matrix-vector operation simply call "apply").
*/
virtual LinearOp buildPreconditionerOperator(LinearOp & lo,PreconditionerState & state) const = 0;
/** \brief Function that permits the construction of an arbitrary
* PreconditionerState object.
*
* Function that permits the construction of an arbitrary
* PreconditionerState object. If the basic state object,
* which takes a parameter list, is sufficient the default behavior
* does precisely what is needed. Otherwise, an author of a
* PreconditionerFactory would need to reimplement this method to
* return a new state object.
*
* \returns A state object associated with this factory.
*/
virtual Teuchos::RCP<PreconditionerState> buildPreconditionerState() const
{ return Teuchos::rcp(new PreconditionerState()); }
//! @name Methods for construction from a parameter list entry
//@{
/** \brief This function builds the internals of the preconditioner factory
* from a parameter list.
*
* This function builds the internals of the preconditioner factory
* from a parameter list. Furthermore, it allows a preconditioner factory
* developer to easily add a factory to the build system. This function
* is required for building a preconditioner from a parameter list.
*
* \param[in] settings Parmaeter list to use as the internal settings
*
* \note The default implementation does nothing.
*/
virtual void initializeFromParameterList(const Teuchos::ParameterList & settings)
{ }
/** \brief Request the additional parameters this preconditioner factory
* needs.
*
* Request the additonal parameters needed by this preconditioner factory.
* The parameter list will have a set of fields that can be filled with
* the requested values. These fields include all requirements, even those
* of the sub-solvers if there are any. Once correctly filled the object
* can be updated by calling the updateRequestedParameters with the filled
* parameter list.
*
* \returns A parameter list with the requested parameters.
*
* \note The default implementation returns Teuchos::null.
*/
virtual Teuchos::RCP<Teuchos::ParameterList> getRequestedParameters() const
{ return Teuchos::null; }
/** \brief Update this object with the fields from a parameter list.
*
* Update the requested fields using a parameter list. This method is
* expected to pair with the getRequestedParameters method (i.e. the fields
* requested are going to be update using this method).
*
* \param[in] pl Parameter list containing the requested parameters.
*
* \returns If the method succeeded (found all its required parameters) this
* method returns true, otherwise it returns false.
*
* \note The default implementation returns true (it does nothing!).
*/
virtual bool updateRequestedParameters(const Teuchos::ParameterList & pl)
{ return true; }
//@}
//! Set the inverse library used by this preconditioner factory
void setInverseLibrary(const Teuchos::RCP<const InverseLibrary> & il);
//! Get the inverse library used by this preconditioner factory
Teuchos::RCP<const InverseLibrary> getInverseLibrary() const;
//! @name Methods inherited from Thyra::PreconditionerFactoryBase
//@{
//! is this operator compatiable with the preconditioner factory?
bool isCompatible(const Thyra::LinearOpSourceBase<double> &fwdOpSrc) const;
//! create an instance of the preconditioner
Teuchos::RCP<Thyra::PreconditionerBase<double> > createPrec() const;
/** \brief initialize a newly created preconditioner object
*
* Initialize a newly created preconditioner object. For use with
* nonlinear solvers.
*
* \param[in] fwdOpSrc Forward operator to be preconditioned
* \param[in] solnVec Vector associated with this linear operator.
* \param[in,out] precOp Return location for the preconditioner
* \param[in] supportSolveUse Thyra information (?)
*/
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
void initializePrec(const Teuchos::RCP<const Thyra::LinearOpSourceBase<double> > & fwdOpSrc,
Thyra::PreconditionerBase<double> * precOp,
const Thyra::ESupportSolveUse supportSolveUse) const;
//! wipe clean a already initialized preconditioner object
void uninitializePrec(Thyra::PreconditionerBase<double> * prec,
Teuchos::RCP<const Thyra::LinearOpSourceBase<double> > * fwdOpSrc,
Thyra::ESupportSolveUse *supportSolveUse) const;
//@}
//! @name Methods inherited from Teuchos::ParameterListAcceptor
//@{
//! Set parameters from a parameter list and return with default values.
void setParameterList(const Teuchos::RCP<Teuchos::ParameterList> & paramList);
//! Get the parameter list that was set using setParameterList().
Teuchos::RCP< Teuchos::ParameterList > getNonconstParameterList();
//! Unset the parameter list that was set using setParameterList().
Teuchos::RCP< Teuchos::ParameterList > unsetParameterList();
//@}
//! Set the request handler with pointers to the appropriate callbacks
void setRequestHandler(const Teuchos::RCP<RequestHandler> & rh)
{ callbackHandler_ = rh; }
//! Get the request handler with pointers to the appropriate callbacks
Teuchos::RCP<RequestHandler> getRequestHandler() const
{ return callbackHandler_; }
protected:
//! for ParameterListAcceptor
Teuchos::RCP<Teuchos::ParameterList> paramList_;
//! For handling requests and send requests back to the user
Teuchos::RCP<RequestHandler> callbackHandler_;
private:
//! Inverse library to be used by this factory
Teuchos::RCP<const InverseLibrary> inverseLibrary_;
//! If supported, set the request handler in this operator
static void setOpRequestHandler(const RequestHandlerContainer & rhc,const LinearOp & op);
public:
/** \brief Builder function for creating preconditioner factories (yes
* this is a factory factory).
*
* Builder function for creating preconditioner factories (yes
* this is a factory factory).
*
* \param[in] name String name of factory to build
* \param[in] settings Parameter list describing the parameters for the
* factory to build
* \param[in] invLib Inverse library for the factory to use.
*
* \returns If the name is associated with a preconditioner
* a pointer is returned, otherwise Teuchos::null is returned.
*/
static Teuchos::RCP<PreconditionerFactory>
buildPreconditionerFactory(const std::string & name,
const Teuchos::ParameterList & settings,
const Teuchos::RCP<const InverseLibrary> & invLib=Teuchos::null);
/** \brief Add a preconditioner factory to the builder. This is done using the
* clone pattern.
*
* Add a preconditioner factory to the builder. This is done using the
* clone pattern. If your class does not support the Cloneable interface then
* you can use the AutoClone class to construct your object.
*
* \note If this method is called twice with the same string, the latter clone pointer
* will be used.
*
* \param[in] name String to associate with this object
* \param[in] clone Pointer to Cloneable object
*/
static void addPreconditionerFactory(const std::string & name,const Teuchos::RCP<Cloneable> & clone);
/** \brief Get the names of the block preconditioner factories
*/
static void getPreconditionerFactoryNames(std::vector<std::string> & names);
private:
//! for creating the preconditioner factories objects
static CloneFactory<PreconditionerFactory> precFactoryBuilder_;
//! This is where the default objects are put into the precFactoryBuilder_
static void initializePrecFactoryBuilder();
};
} // end namespace Teko
#endif
|