Skip to content

Commit

Permalink
MueLu RefMaxwell: Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
cgcgcg committed Jan 17, 2024
1 parent 18286af commit cb67a96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions packages/muelu/src/Operators/MueLu_RefMaxwell_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ namespace MueLu {
A11_nodal = D_{0}^T * M_1(beta) * D_{0}
A22_nodal = D_{0}^T * M_1(alpha) * D_{0}
then constuct typical nodal scalar HGrad prolongators.
then construct typical nodal scalar HGrad prolongators.
We then replicate them into prolongators for vectorial H(grad)
problem. Finally, we multiply from the left with the projection
Expand Down Expand Up @@ -240,10 +240,10 @@ namespace MueLu {
Parameter list options:
- <tt>refmaxwell: mode</tt> - a <tt>string</tt> specifying the order of solve of the block system.
Allowed values are: "additive" (default), "121", "212", "1", "2"
- <tt>refmaxwell: disable addon</tt> - <tt>bool</tt> specifing whether the addon should be built for stabilization.
- <tt>refmaxwell: disable addon</tt> - <tt>bool</tt> specifying whether the addon should be built for stabilization.
Default: "true"
- <tt>refmaxwell: use as preconditioner</tt> - <tt>bool</tt> specifing whether RefMaxwell is used as a preconditioner or as a solver.
- <tt>refmaxwell: dump matrices</tt> - <tt>bool</tt> specifing whether the matrices should be dumped.
- <tt>refmaxwell: use as preconditioner</tt> - <tt>bool</tt> specifying whether RefMaxwell is used as a preconditioner or as a solver.
- <tt>refmaxwell: dump matrices</tt> - <tt>bool</tt> specifying whether the matrices should be dumped.
Default: "false"
- <tt>refmaxwell: 11list</tt> and <tt>refmaxwell: 22list</tt> - parameter list for the multigrid hierarchies on 11 and 22 blocks
- <tt>refmaxwell: subsolves on subcommunicators</tt> - <tt>bool</tt> redistribute the two subsolves to disjoint sub-communicators (so that the additive solve can occur in parallel)
Expand Down
6 changes: 3 additions & 3 deletions packages/muelu/src/Operators/MueLu_RefMaxwell_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,17 +146,17 @@ RefMaxwell<Scalar, LocalOrdinal, GlobalOrdinal, Node>::

params->set<RCP<Matrix> >("M1_beta", Teuchos::null);
params->set<RCP<Matrix> >("M1_alpha", Teuchos::null);
// for backwards compatiblity
// for backwards compatibility
params->set<RCP<Matrix> >("Ms", Teuchos::null);

params->set<RCP<Matrix> >("Mk_one", Teuchos::null);
params->set<RCP<Matrix> >("Mk_1_one", Teuchos::null);
// for backwards compatiblity
// for backwards compatibility
params->set<RCP<Matrix> >("M1", Teuchos::null);

params->set<RCP<Matrix> >("invMk_1_invBeta", Teuchos::null);
params->set<RCP<Matrix> >("invMk_2_invAlpha", Teuchos::null);
// for backwards compatiblity
// for backwards compatibility
params->set<RCP<Matrix> >("M0inv", Teuchos::null);

params->set<RCP<MultiVector> >("Nullspace", Teuchos::null);
Expand Down

0 comments on commit cb67a96

Please sign in to comment.