10 #ifndef MUELU_TOGGLEPFACTORY_DEF_HPP
11 #define MUELU_TOGGLEPFACTORY_DEF_HPP
23 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
27 #define SET_VALID_ENTRY(name) validParamList->setEntry(name, MasterList::getEntry(name))
30 #undef SET_VALID_ENTRY
32 return validParamList;
35 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
38 for (std::vector<
RCP<const FactoryBase> >::const_iterator it = prolongatorFacts_.begin(); it != prolongatorFacts_.end(); ++it) {
40 coarseLevel.
DeclareInput(
"RfromPfactory", (*it).get(),
this);
41 (*it)->CallDeclareInput(coarseLevel);
43 for (std::vector<
RCP<const FactoryBase> >::const_iterator it = ptentFacts_.begin(); it != ptentFacts_.end(); ++it) {
45 (*it)->CallDeclareInput(coarseLevel);
47 for (std::vector<
RCP<const FactoryBase> >::const_iterator it = nspFacts_.begin(); it != nspFacts_.end(); ++it) {
48 coarseLevel.
DeclareInput(
"Nullspace", (*it).get(),
this);
49 (*it)->CallDeclareInput(coarseLevel);
62 hasDeclaredInput_ =
true;
65 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
68 std::ostringstream levelstr;
75 int nProlongatorFactory = 0;
79 std::string mode = Teuchos::as<std::string>(pL.
get<std::string>(
"toggle: mode"));
80 int semicoarsen_levels = Teuchos::as<int>(pL.
get<
int>(
"semicoarsen: number of levels"));
87 GetOStream(
Runtime1) <<
"Number of layers for semicoarsening: " << NumZDir << std::endl;
91 if (fineLevel.
GetLevelID() >= semicoarsen_levels || NumZDir == 1) {
92 nProlongatorFactory = 1;
94 nProlongatorFactory = 0;
102 GetOStream(
Runtime0) <<
"TogglePFactory: call transfer factory: " << (prolongatorFacts_[nProlongatorFactory])->description() << std::endl;
103 prolongatorFacts_[nProlongatorFactory]->CallBuild(coarseLevel);
104 P = coarseLevel.
Get<
RCP<Matrix> >(
"P", (prolongatorFacts_[nProlongatorFactory]).
get());
106 int Rplaceholder = -1;
110 if (coarseLevel.
IsAvailable(
"RfromPfactory", (prolongatorFacts_[nProlongatorFactory]).get())) {
111 std::string strType = coarseLevel.
GetTypeName(
"RfromPfactory", (prolongatorFacts_[nProlongatorFactory]).
get());
112 if (strType ==
"int")
113 Rplaceholder = nProlongatorFactory;
115 R = coarseLevel.
Get<
RCP<Matrix> >(
"RfromPfactory", (prolongatorFacts_[nProlongatorFactory]).
get());
120 Ptent = coarseLevel.
Get<
RCP<Matrix> >(
"P", (ptentFacts_[nProlongatorFactory]).
get());
121 coarseNullspace = coarseLevel.
Get<
RCP<MultiVector> >(
"Nullspace", (nspFacts_[nProlongatorFactory]).
get());
124 for (
size_t t = 0; t < nspFacts_.size(); ++t) {
125 coarseLevel.
Release(*(prolongatorFacts_[t]));
126 coarseLevel.
Release(*(ptentFacts_[t]));
127 coarseLevel.
Release(*(nspFacts_[t]));
131 Set(coarseLevel,
"P", P);
136 if (R != Teuchos::null)
137 Set(coarseLevel,
"RfromPfactory", R);
138 else if (Rplaceholder != -1)
139 Set(coarseLevel,
"RfromPfactory", Teuchos::as<int>(Rplaceholder));
140 Set(coarseLevel,
"Nullspace", coarseNullspace);
141 Set(coarseLevel,
"Ptent", Ptent);
142 Set(coarseLevel,
"Chosen P", nProlongatorFactory);
145 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
149 "MueLu::TogglePFactory::AddProlongatorFactory: Transfer factory is not derived from TwoLevelFactoryBase. "
150 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
152 prolongatorFacts_.push_back(factory);
155 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
159 "MueLu::TogglePFactory::AddPtentFactory: Transfer factory is not derived from TwoLevelFactoryBase. "
160 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
162 ptentFacts_.push_back(factory);
165 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
169 "MueLu::TogglePFactory::AddCoarseNullspaceFactory: Transfer factory is not derived from TwoLevelFactoryBase. Make sure you provide the factory which generates the coarse level nullspace information. Usually this is a prolongator factory."
170 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
172 nspFacts_.push_back(factory);
177 #endif // MUELU_TOGGLEPFACTORY_DEF_HPP
Exception indicating invalid cast attempted.
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.
void Build(Level &fineLevel, Level &coarseLevel) const
Build method.
void Release(const FactoryBase &factory)
Decrement the storage counter for all the inputs of a factory.
T & get(const std::string &name, T def_value)
void AddProlongatorFactory(const RCP< const FactoryBase > &factory)
Add a prolongator factory in the end of list of prolongator factories.
Timer to be used in factories. Similar to Monitor but with additional timers.
#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...
One-liner description of what is happening.
static const NoFactory * get()
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
std::string GetTypeName(const std::string &ename, const FactoryBase *factory=NoFactory::get())
GetTypeName returns type string of variable stored using ename and factory.
void RemoveKeepFlag(const std::string &ename, const FactoryBase *factory, KeepType keep=MueLu::All)
int GetLevelID() const
Return level number.
Exception throws to report errors in the internal logical of the program.
Description of what is happening (more verbose)
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
void AddPtentFactory(const RCP< const FactoryBase > &factory)
Add a tentative prolongator factory in the end of list of prolongator factories.
void DeclareInput(const std::string &ename, const FactoryBase *factory, const FactoryBase *requestedBy=NoFactory::get())
Callback from FactoryBase::CallDeclareInput() and FactoryBase::DeclareInput()
#define SET_VALID_ENTRY(name)
void AddCoarseNullspaceFactory(const RCP< const FactoryBase > &factory)
Add a coarse nullspace factory in the end of list of coarse nullspace factories.
bool IsAvailable(const std::string &ename, const FactoryBase *factory=NoFactory::get()) const
Test whether a need's value has been saved.
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.