17 #ifndef PACKAGES_MUELU_SRC_MUECENTRAL_MUELU_TOPSMOOTHERFACTORY_DEF_HPP_
18 #define PACKAGES_MUELU_SRC_MUECENTRAL_MUELU_TOPSMOOTHERFACTORY_DEF_HPP_
27 #include "MueLu_SmootherFactory.hpp"
28 #include "MueLu_SmootherPrototype.hpp"
33 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
37 if (varName ==
"CoarseSolver") {
43 if (coarseSmootherFactory != Teuchos::null) {
48 if (preProto == postProto)
49 preSmootherFact_ = parentFactoryManager->
GetFactory(
"CoarseSolver");
52 if (preProto != Teuchos::null)
53 preSmootherFact_ = parentFactoryManager->
GetFactory(
"CoarseSolver");
54 if (postProto != Teuchos::null)
55 postSmootherFact_ = parentFactoryManager->
GetFactory(
"CoarseSolver");
58 preSmootherFact_ = parentFactoryManager->
GetFactory(
"CoarseSolver");
61 preSmootherFact_ = parentFactoryManager->
GetFactory(
"PreSmoother");
62 postSmootherFact_ = parentFactoryManager->
GetFactory(
"PostSmoother");
66 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
69 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
71 if (preSmootherFact_ != Teuchos::null)
72 level.
DeclareInput(
"PreSmoother", preSmootherFact_.get());
73 if (postSmootherFact_ != Teuchos::null)
74 level.
DeclareInput(
"PostSmoother", postSmootherFact_.get());
77 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
79 if (preSmootherFact_.is_null() && postSmootherFact_.is_null())
90 if (!preSmootherFact_.is_null()) {
113 if (!postSmootherFact_.is_null()) {
Generic Smoother Factory for generating the smoothers of the MG hierarchy.
void Build(Level &level) const
Build an object with this factory.
T & Get(const std::string &ename, const FactoryBase *factory=NoFactory::get())
Get data without decrementing associated storage counter (i.e., read-only access). Usage: Level->Get< RCP<Matrix> >("A", factory) if factory == NULL => use default factory.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
User data are always kept. This flag is set automatically when Level::Set("data", data) is used...
static const NoFactory * get()
virtual ~TopSmootherFactory()
virtual const RCP< const FactoryBase > GetFactory(const std::string &varName) const =0
Get.
Class that holds all level-specific information.
Keep data only for this run. Used to keep data useful for Hierarchy::Iterate(). Data will be deleted ...
void RemoveKeepFlag(const std::string &ename, const FactoryBase *factory, KeepType keep=MueLu::All)
void AddKeepFlag(const std::string &ename, const FactoryBase *factory=NoFactory::get(), KeepType keep=MueLu::Keep)
void Set(const std::string &ename, const T &entry, const FactoryBase *factory=NoFactory::get())
void GetSmootherPrototypes(RCP< SmootherPrototype > &preSmootherPrototype, RCP< SmootherPrototype > &postSmootherPrototype) const
Get smoother prototypes.
Exception throws to report errors in the internal logical of the program.
void DeclareInput(const std::string &ename, const FactoryBase *factory, const FactoryBase *requestedBy=NoFactory::get())
Callback from FactoryBase::CallDeclareInput() and FactoryBase::DeclareInput()
void DeclareInput(Level &level) const
Specifies the data that this class needs, and the factories that generate that data.
TopSmootherFactory(RCP< const FactoryManagerBase > parentFactoryManager, const std::string &varName)