Go to the documentation of this file.
46 #include <Teuchos_XMLParameterListCoreHelpers.hpp>
82 if (name ==
"verbosity") {
83 std::string verb =
"none";
84 if (value ==
"\"0\"") verb =
"none";
85 if (value ==
"\"1\"" || value ==
"\"2\"" || value ==
"\"3\"") verb =
"low";
86 if (value ==
"\"4\"" || value ==
"\"5\"" || value ==
"\"6\"") verb =
"medium";
87 if (value ==
"\"7\"" || value ==
"\"8\"") verb =
"high";
88 if (value ==
"\"9\"") verb =
"extreme";
89 if (value ==
"\"10\"") verb =
"test";
90 verb =
"\"" + verb +
"\"";
91 ss <<
"<Parameter name=\"verbosity\" type=\"string\" value=" << verb <<
"/>";
95 if (name ==
"cycle type") {
96 std::stringstream temp1; temp1 <<
"\"" <<
"MGV" <<
"\"";
97 std::stringstream temp2; temp2 <<
"\"" <<
"MGV" <<
"\"";
98 if (value == temp1.str() ) { ss <<
"<Parameter name=\"cycle type\" type=\"string\" value=\"V\"/>"; }
99 else if (value == temp2.str()) { ss <<
"<Parameter name=\"cycle type\" type=\"string\" value=\"W\"/>"; }
101 <<
"The parameter " << value <<
" is not supported by MueLu.");
106 if (name ==
"multigrid algorithm") {
107 std::stringstream temp; temp <<
"\"" <<
"1" <<
"\"";
108 if (value == temp.str() ) { ss <<
"<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"pg\"/>";
return ss.str(); }
111 if (name ==
"repartition: enable") {
112 std::stringstream temp1; temp1 <<
"\"" <<
"1" <<
"\"";
113 if (value == temp1.str()) {
114 RCP<Teuchos::FancyOStream> out = Teuchos::fancyOStream(Teuchos::rcpFromRef(std::cout));
115 *out <<
"WARNING: repartitioning in MueLu is different to MLs. Please refer to the MueLu users Manual for more information." << std::endl;
122 if (name ==
"number of equations") { ss <<
"<Parameter name=\"number of equations\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
123 if (name ==
"max levels") { ss <<
"<Parameter name=\"max levels\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
124 if (name ==
"coarse grid correction scaling factor") { ss <<
"<Parameter name=\"coarse grid correction scaling factor\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
125 if (name ==
"problem: symmetric") { ss <<
"<Parameter name=\"problem: symmetric\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
126 if (name ==
"hierarchy label") { ss <<
"<Parameter name=\"hierarchy label\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
127 if (name ==
"aggregation: drop tol") { ss <<
"<Parameter name=\"aggregation: drop tol\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
128 if (name ==
"print initial parameters") { ss <<
"<Parameter name=\"print initial parameters\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
129 if (name ==
"print unused parameters") { ss <<
"<Parameter name=\"print unused parameters\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
130 if (name ==
"sa: damping factor") { ss <<
"<Parameter name=\"sa: damping factor\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
131 if (name ==
"sa: eigenvalue estimate num iterations") { ss <<
"<Parameter name=\"sa: eigenvalue estimate num iterations\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
132 if (name ==
"pcoarsen: element") { ss <<
"<Parameter name=\"pcoarsen: element\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
133 if (name ==
"pcoarsen: schedule") { ss <<
"<Parameter name=\"pcoarsen: schedule\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
134 if (name ==
"pcoarsen: hi basis") { ss <<
"<Parameter name=\"pcoarsen: hi basis\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
135 if (name ==
"pcoarsen: lo basis") { ss <<
"<Parameter name=\"pcoarsen: lo basis\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
136 if (name ==
"smoother: neighborhood type") { ss <<
"<Parameter name=\"smoother: neighborhood type\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
137 if (name ==
"tentative: calculate qr") { ss <<
"<Parameter name=\"tentative: calculate qr\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
138 if (name ==
"repartition: enable") { ss <<
"<Parameter name=\"repartition: enable\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
139 if (name ==
"repartition: start level") { ss <<
"<Parameter name=\"repartition: start level\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
140 if (name ==
"repartition: min rows per proc") { ss <<
"<Parameter name=\"repartition: min rows per proc\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
141 if (name ==
"repartition: max imbalance") { ss <<
"<Parameter name=\"repartition: max imbalance\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
142 if (name ==
"use external multigrid package") { ss <<
"<Parameter name=\"use external multigrid package\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
150 "<ParameterList name=\"MueLu\">"
151 "<Parameter name=\"problem: type\" type=\"string\" value=\"unknown\"/>"
152 "<Parameter name=\"verbosity\" type=\"string\" value=\"high\"/>"
153 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
154 "<Parameter name=\"max levels\" type=\"int\" value=\"10\"/>"
155 "<Parameter name=\"cycle type\" type=\"string\" value=\"V\"/>"
156 "<Parameter name=\"coarse grid correction scaling factor\" type=\"double\" value=\"1.0\"/>"
157 "<Parameter name=\"problem: symmetric\" type=\"bool\" value=\"true\"/>"
158 "<Parameter name=\"xml parameter file\" type=\"string\" value=\"\"/>"
159 "<Parameter name=\"parameterlist: syntax\" type=\"string\" value=\"muelu\"/>"
160 "<Parameter name=\"hierarchy label\" type=\"string\" value=\"\"/>"
161 "<Parameter name=\"smoother: pre or post\" type=\"string\" value=\"both\"/>"
162 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
163 "<Parameter name=\"smoother: pre type\" type=\"string\" value=\"RELAXATION\"/>"
164 "<Parameter name=\"smoother: post type\" type=\"string\" value=\"RELAXATION\"/>"
165 "<ParameterList name=\"smoother: params\"/>"
166 "<ParameterList name=\"smoother: pre params\"/>"
167 "<ParameterList name=\"smoother: post params\"/>"
168 "<Parameter name=\"smoother: overlap\" type=\"int\" value=\"0\"/>"
169 "<Parameter name=\"smoother: pre overlap\" type=\"int\" value=\"0\"/>"
170 "<Parameter name=\"smoother: post overlap\" type=\"int\" value=\"0\"/>"
171 "<Parameter name=\"coarse: max size\" type=\"int\" value=\"2000\"/>"
172 "<Parameter name=\"coarse: type\" type=\"string\" value=\"SuperLU\"/>"
173 "<ParameterList name=\"coarse: params\"/>"
174 "<Parameter name=\"coarse: overlap\" type=\"int\" value=\"0\"/>"
175 "<Parameter name=\"aggregation: type\" type=\"string\" value=\"uncoupled\"/>"
176 "<Parameter name=\"aggregation: ordering\" type=\"string\" value=\"natural\"/>"
177 "<Parameter name=\"aggregation: drop scheme\" type=\"string\" value=\"classical\"/>"
178 "<Parameter name=\"aggregation: drop tol\" type=\"double\" value=\"0.0\"/>"
179 "<Parameter name=\"aggregation: min agg size\" type=\"int\" value=\"2\"/>"
180 "<Parameter name=\"aggregation: max agg size\" type=\"int\" value=\"-1\"/>"
181 "<Parameter name=\"aggregation: brick x size\" type=\"int\" value=\"2\"/>"
182 "<Parameter name=\"aggregation: brick y size\" type=\"int\" value=\"2\"/>"
183 "<Parameter name=\"aggregation: brick z size\" type=\"int\" value=\"2\"/>"
184 "<Parameter name=\"aggregation: max selected neighbors\" type=\"int\" value=\"0\"/>"
185 "<Parameter name=\"aggregation: Dirichlet threshold\" type=\"double\" value=\"0.0\"/>"
186 "<Parameter name=\"aggregation: phase 1 algorithm\" type=\"string\" value=\"Serial\"/>"
187 "<Parameter name=\"aggregation: enable phase 1\" type=\"bool\" value=\"true\"/>"
188 "<Parameter name=\"aggregation: enable phase 2a\" type=\"bool\" value=\"true\"/>"
189 "<Parameter name=\"aggregation: enable phase 2b\" type=\"bool\" value=\"true\"/>"
190 "<Parameter name=\"aggregation: enable phase 3\" type=\"bool\" value=\"true\"/>"
191 "<Parameter name=\"aggregation: error on nodes with no on-rank neighbors\" type=\"bool\" value=\"false\"/>"
192 "<Parameter name=\"aggregation: allow empty prolongator columns\" type=\"bool\" value=\"false\"/>"
193 "<Parameter name=\"aggregation: preserve Dirichlet points\" type=\"bool\" value=\"false\"/>"
194 "<Parameter name=\"aggregation: allow user-specified singletons\" type=\"bool\" value=\"false\"/>"
195 "<Parameter name=\"aggregation: use interface aggregation\" type=\"bool\" value=\"false\"/>"
196 "<Parameter name=\"aggregation: export visualization data\" type=\"bool\" value=\"false\"/>"
197 "<Parameter name=\"aggregation: output filename\" type=\"string\" value=\"\"/>"
198 "<Parameter name=\"aggregation: output file: time step\" type=\"int\" value=\"0\"/>"
199 "<Parameter name=\"aggregation: output file: iter\" type=\"int\" value=\"0\"/>"
200 "<Parameter name=\"aggregation: output file: agg style\" type=\"string\" value=\"Point Cloud\"/>"
201 "<Parameter name=\"aggregation: output file: fine graph edges\" type=\"bool\" value=\"false\"/>"
202 "<Parameter name=\"aggregation: output file: coarse graph edges\" type=\"bool\" value=\"false\"/>"
203 "<Parameter name=\"aggregation: output file: build colormap\" type=\"bool\" value=\"false\"/>"
204 "<ParameterList name=\"aggregation: params\"/>"
205 "<ParameterList name=\"strength-of-connection: params\"/>"
206 "<ParameterList name=\"export data\"/>"
207 "<Parameter name=\"print initial parameters\" type=\"bool\" value=\"true\"/>"
208 "<Parameter name=\"print unused parameters\" type=\"bool\" value=\"true\"/>"
209 "<Parameter name=\"transpose: use implicit\" type=\"bool\" value=\"false\"/>"
210 "<Parameter name=\"use kokkos refactor\" type=\"bool\" value=\"false\"/>"
211 "<Parameter name=\"synchronize factory timers\" type=\"bool\" value=\"false\"/>"
212 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
213 "<Parameter name=\"toggle: mode\" type=\"string\" value=\"semicoarsen\"/>"
214 "<Parameter name=\"semicoarsen: coarsen rate\" type=\"int\" value=\"3\"/>"
215 "<Parameter name=\"semicoarsen: number of levels\" type=\"int\" value=\"3\"/>"
216 "<Parameter name=\"linedetection: orientation\" type=\"string\" value=\"vertical\"/>"
217 "<Parameter name=\"linedetection: num layers\" type=\"int\" value=\"-1\"/>"
218 "<Parameter name=\"sa: damping factor\" type=\"double\" value=\"1.33\"/>"
219 "<Parameter name=\"sa: use filtered matrix\" type=\"bool\" value=\"true\"/>"
220 "<Parameter name=\"sa: calculate eigenvalue estimate\" type=\"bool\" value=\"false\"/>"
221 "<Parameter name=\"sa: eigenvalue estimate num iterations\" type=\"int\" value=\"10\"/>"
222 "<Parameter name=\"gmg: interpolation order\" type=\"int\" value=\"1\"/>"
223 "<Parameter name=\"gmg: build coarse coordinates\" type=\"bool\" value=\"true\"/>"
224 "<ParameterList name=\"transfer: params\"/>"
225 "<Parameter name=\"pcoarsen: element\" type=\"string\" value=\"\"/>"
226 "<Parameter name=\"pcoarsen: schedule\" type=\"string\" value=\"\"/>"
227 "<Parameter name=\"pcoarsen: hi basis\" type=\"string\" value=\"\"/>"
228 "<Parameter name=\"pcoarsen: lo basis\" type=\"string\" value=\"\"/>"
229 "<Parameter name=\"smoother: neighborhood type\" type=\"string\" value=\"\"/>"
230 "<Parameter name=\"filtered matrix: use lumping\" type=\"bool\" value=\"true\"/>"
231 "<Parameter name=\"filtered matrix: reuse eigenvalue\" type=\"bool\" value=\"true\"/>"
232 "<Parameter name=\"filtered matrix: reuse graph\" type=\"bool\" value=\"true\"/>"
233 "<Parameter name=\"emin: iterative method\" type=\"string\" value=\"cg\"/>"
234 "<Parameter name=\"emin: num iterations\" type=\"int\" value=\"2\"/>"
235 "<Parameter name=\"emin: num reuse iterations\" type=\"int\" value=\"1\"/>"
236 "<Parameter name=\"emin: pattern\" type=\"string\" value=\"AkPtent\"/>"
237 "<Parameter name=\"emin: pattern order\" type=\"int\" value=\"1\"/>"
238 "<Parameter name=\"tentative: calculate qr\" type=\"bool\" value=\"true\"/>"
239 "<Parameter name=\"tentative: build coarse coordinates\" type=\"bool\" value=\"true\"/>"
240 "<Parameter name=\"repartition: enable\" type=\"bool\" value=\"false\"/>"
241 "<Parameter name=\"repartition: partitioner\" type=\"string\" value=\"zoltan2\"/>"
242 "<ParameterList name=\"repartition: params\"/>"
243 "<Parameter name=\"repartition: start level\" type=\"int\" value=\"2\"/>"
244 "<Parameter name=\"repartition: min rows per proc\" type=\"int\" value=\"800\"/>"
245 "<Parameter name=\"repartition: target rows per proc\" type=\"int\" value=\"0\"/>"
246 "<Parameter name=\"repartition: max imbalance\" type=\"double\" value=\"1.2\"/>"
247 "<Parameter name=\"repartition: remap parts\" type=\"bool\" value=\"true\"/>"
248 "<Parameter name=\"repartition: remap num values\" type=\"int\" value=\"4\"/>"
249 "<Parameter name=\"repartition: print partition distribution\" type=\"bool\" value=\"false\"/>"
250 "<Parameter name=\"repartition: rebalance P and R\" type=\"bool\" value=\"false\"/>"
251 "<Parameter name=\"repartition: use subcommunicators\" type=\"bool\" value=\"true\"/>"
252 "<Parameter name=\"rap: fix zero diagonals\" type=\"bool\" value=\"false\"/>"
253 "<Parameter name=\"rap: shift\" type=\"double\" value=\"0.0\"/>"
254 "<Parameter name=\"rap: algorithm\" type=\"string\" value=\"galerkin\"/>"
255 "<Parameter name=\"rap: triple product\" type=\"bool\" value=\"false\"/>"
256 "<ParameterList name=\"matrixmatrix: kernel params\"/>"
257 "<Parameter name=\"reuse: type\" type=\"string\" value=\"none\"/>"
258 "<Parameter name=\"use external multigrid package\" type=\"string\" value=\"none\"/>"
259 "<ParameterList name=\"amgx:params\"/>"
260 "<Parameter name=\"debug: graph level\" type=\"int\" value=\"-1\"/>"
266 "<ParameterList name=\"MueLu\">"
268 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
270 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
272 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
276 (
"Poisson-2D-complex",
278 "<ParameterList name=\"MueLu\">"
280 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
282 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
284 "<ParameterList name=\"smoother: params\">"
286 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
290 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
296 "<ParameterList name=\"MueLu\">"
298 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
300 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
302 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
306 (
"Poisson-3D-complex",
308 "<ParameterList name=\"MueLu\">"
310 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
312 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
314 "<ParameterList name=\"smoother: params\">"
316 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
320 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
326 "<ParameterList name=\"MueLu\">"
328 "<Parameter name=\"number of equations\" type=\"int\" value=\"2\"/>"
330 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
332 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
336 (
"Elasticity-2D-complex",
338 "<ParameterList name=\"MueLu\">"
340 "<Parameter name=\"number of equations\" type=\"int\" value=\"2\"/>"
342 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
344 "<ParameterList name=\"smoother: params\">"
346 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
350 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
356 "<ParameterList name=\"MueLu\">"
358 "<Parameter name=\"number of equations\" type=\"int\" value=\"3\"/>"
360 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
362 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
366 (
"Elasticity-3D-complex",
368 "<ParameterList name=\"MueLu\">"
370 "<Parameter name=\"number of equations\" type=\"int\" value=\"3\"/>"
372 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
374 "<ParameterList name=\"smoother: params\">"
376 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
380 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
386 "<ParameterList name=\"MueLu\">"
388 "<Parameter name=\"smoother: type\" type=\"string\" value=\"SCHWARZ\"/>"
390 "<ParameterList name=\"smoother: params\">"
392 "<Parameter name=\"schwarz: overlap level\" type=\"int\" value=\"1\"/>"
394 "<Parameter name=\"schwarz: combine mode\" type=\"string\" value=\"Zero\"/>"
396 "<Parameter name=\"schwarz: use reordering\" type=\"bool\" value=\"false\"/>"
398 "<Parameter name=\"subdomain solver name\" type=\"string\" value=\"RILUK\"/>"
400 "<ParameterList name=\"subdomain solver parameters\">"
402 "<Parameter name=\"fact: iluk level-of-fill\" type=\"int\" value=\"0\"/>"
404 "<Parameter name=\"fact: absolute threshold\" type=\"double\" value=\"0.\"/>"
406 "<Parameter name=\"fact: relative threshold\" type=\"double\" value=\"1.\"/>"
408 "<Parameter name=\"fact: relax value\" type=\"double\" value=\"0.\"/>"
414 "<Parameter name=\"transpose: use implicit\" type=\"bool\" value=\"true\"/>"
416 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"unsmoothed\"/>"
420 (
"ConvectionDiffusion",
422 "<ParameterList name=\"MueLu\">"
424 "<Parameter name=\"problem: symmetric\" type=\"bool\" value=\"false\"/>"
426 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
428 "<ParameterList name=\"smoother: params\">"
430 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Gauss-Seidel\"/>"
434 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"pg\"/>"
436 "<Parameter name=\"sa: use filtered matrix\" type=\"bool\" value=\"true\"/>"
443 (
"default values",
"problem: type")
445 (
"ML output",
"verbosity")
447 (
"PDE equations",
"number of equations")
449 (
"max levels",
"max levels")
451 (
"prec type",
"cycle type")
453 (
"coarse grid correction scaling factor",
"coarse grid correction scaling factor")
455 (
"problem: symmetric",
"problem: symmetric")
457 (
"xml parameter file",
"xml parameter file")
459 (
"parameterlist: syntax",
"parameterlist: syntax")
461 (
"hierarchy label",
"hierarchy label")
463 (
"smoother: pre or post",
"smoother: pre or post")
465 (
"smoother: type",
"smoother: type")
467 (
"smoother: pre type",
"smoother: pre type")
469 (
"smoother: post type",
"smoother: post type")
471 (
"smoother: params",
"smoother: params")
473 (
"smoother: pre params",
"smoother: pre params")
475 (
"smoother: post params",
"smoother: post params")
477 (
"smoother: overlap",
"smoother: overlap")
479 (
"smoother: pre overlap",
"smoother: pre overlap")
481 (
"smoother: post overlap",
"smoother: post overlap")
483 (
"max size",
"coarse: max size")
485 (
"coarse: type",
"coarse: type")
487 (
"coarse: params",
"coarse: params")
489 (
"coarse: overlap",
"coarse: overlap")
491 (
"aggregation: type",
"aggregation: type")
493 (
"aggregation: ordering",
"aggregation: ordering")
495 (
"aggregation: drop scheme",
"aggregation: drop scheme")
497 (
"aggregation: threshold",
"aggregation: drop tol")
499 (
"aggregation: min agg size",
"aggregation: min agg size")
501 (
"aggregation: max agg size",
"aggregation: max agg size")
503 (
"aggregation: brick x size",
"aggregation: brick x size")
505 (
"aggregation: brick y size",
"aggregation: brick y size")
507 (
"aggregation: brick z size",
"aggregation: brick z size")
509 (
"aggregation: max selected neighbors",
"aggregation: max selected neighbors")
511 (
"aggregation: Dirichlet threshold",
"aggregation: Dirichlet threshold")
513 (
"aggregation: phase 1 algorithm",
"aggregation: phase 1 algorithm")
515 (
"aggregation: enable phase 1",
"aggregation: enable phase 1")
517 (
"aggregation: enable phase 2a",
"aggregation: enable phase 2a")
519 (
"aggregation: enable phase 2b",
"aggregation: enable phase 2b")
521 (
"aggregation: enable phase 3",
"aggregation: enable phase 3")
523 (
"aggregation: error on nodes with no on-rank neighbors",
"aggregation: error on nodes with no on-rank neighbors")
525 (
"aggregation: allow empty prolongator columns",
"aggregation: allow empty prolongator columns")
527 (
"aggregation: preserve Dirichlet points",
"aggregation: preserve Dirichlet points")
529 (
"aggregation: allow user-specified singletons",
"aggregation: allow user-specified singletons")
531 (
"aggregation: use interface aggregation",
"aggregation: use interface aggregation")
533 (
"aggregation: export visualization data",
"aggregation: export visualization data")
535 (
"aggregation: output filename",
"aggregation: output filename")
537 (
"aggregation: output file: time step",
"aggregation: output file: time step")
539 (
"aggregation: output file: iter",
"aggregation: output file: iter")
541 (
"aggregation: output file: agg style",
"aggregation: output file: agg style")
543 (
"aggregation: output file: fine graph edges",
"aggregation: output file: fine graph edges")
545 (
"aggregation: output file: coarse graph edges",
"aggregation: output file: coarse graph edges")
547 (
"aggregation: output file: build colormap",
"aggregation: output file: build colormap")
549 (
"aggregation: params",
"aggregation: params")
551 (
"strength-of-connection: params",
"strength-of-connection: params")
553 (
"export data",
"export data")
555 (
"ML print initial list",
"print initial parameters")
557 (
"print unused",
"print unused parameters")
559 (
"transpose: use implicit",
"transpose: use implicit")
561 (
"use kokkos refactor",
"use kokkos refactor")
563 (
"synchronize factory timers",
"synchronize factory timers")
565 (
"energy minimization: enable",
"multigrid algorithm")
567 (
"toggle: mode",
"toggle: mode")
569 (
"semicoarsen: coarsen rate",
"semicoarsen: coarsen rate")
571 (
"semicoarsen: number of levels",
"semicoarsen: number of levels")
573 (
"linedetection: orientation",
"linedetection: orientation")
575 (
"linedetection: num layers",
"linedetection: num layers")
577 (
"aggregation: damping factor",
"sa: damping factor")
579 (
"sa: use filtered matrix",
"sa: use filtered matrix")
581 (
"sa: calculate eigenvalue estimate",
"sa: calculate eigenvalue estimate")
583 (
"eigen-analysis: iterations",
"sa: eigenvalue estimate num iterations")
585 (
"gmg: interpolation order",
"gmg: interpolation order")
587 (
"gmg: build coarse coordinates",
"gmg: build coarse coordinates")
589 (
"transfer: params",
"transfer: params")
591 (
"pcoarsen: element",
"pcoarsen: element")
593 (
"pcoarsen: schedule",
"pcoarsen: schedule")
595 (
"pcoarsen: hi basis",
"pcoarsen: hi basis")
597 (
"pcoarsen: lo basis",
"pcoarsen: lo basis")
599 (
"smoother: neighborhood type",
"smoother: neighborhood type")
601 (
"filtered matrix: use lumping",
"filtered matrix: use lumping")
603 (
"filtered matrix: reuse eigenvalue",
"filtered matrix: reuse eigenvalue")
605 (
"filtered matrix: reuse graph",
"filtered matrix: reuse graph")
607 (
"emin: iterative method",
"emin: iterative method")
609 (
"emin: num iterations",
"emin: num iterations")
611 (
"emin: num reuse iterations",
"emin: num reuse iterations")
613 (
"emin: pattern",
"emin: pattern")
615 (
"emin: pattern order",
"emin: pattern order")
617 (
"tentative: calculate qr",
"tentative: calculate qr")
619 (
"tentative: build coarse coordinates",
"tentative: build coarse coordinates")
621 (
"repartition: enable",
"repartition: enable")
623 (
"repartition: partitioner",
"repartition: partitioner")
625 (
"repartition: params",
"repartition: params")
627 (
"repartition: start level",
"repartition: start level")
629 (
"repartition: min per proc",
"repartition: min rows per proc")
631 (
"repartition: target rows per proc",
"repartition: target rows per proc")
633 (
"repartition: max min ratio",
"repartition: max imbalance")
635 (
"repartition: remap parts",
"repartition: remap parts")
637 (
"repartition: remap num values",
"repartition: remap num values")
639 (
"repartition: print partition distribution",
"repartition: print partition distribution")
641 (
"repartition: rebalance P and R",
"repartition: rebalance P and R")
643 (
"repartition: use subcommunicators",
"repartition: use subcommunicators")
645 (
"rap: fix zero diagonals",
"rap: fix zero diagonals")
647 (
"rap: shift",
"rap: shift")
649 (
"rap: algorithm",
"rap: algorithm")
651 (
"rap: triple product",
"rap: triple product")
653 (
"matrixmatrix: kernel params",
"matrixmatrix: kernel params")
655 (
"reuse: type",
"reuse: type")
657 (
"use external multigrid package",
"use external multigrid package")
659 (
"amgx:params",
"amgx:params")
661 (
"debug: graph level",
"debug: graph level")
static Teuchos::RCP< Teuchos::ParameterList > masterList_
A ParameterList that holds all valid parameters and their default values.
static Teuchos::RCP< Teuchos::ParameterList > GetProblemSpecificList(std::string const &problemType)
Return default parameter settings for the specified problem type.
static std::string interpretParameterName(const std::string &name, const std::string &value)
static std::map< std::string, std::string > ML2MueLuLists_
Map of ML parameter strings to corresponding MueLu parametes.
Namespace for MueLu classes and methods.
Exception throws to report errors in the internal logical of the program.
static std::string problemType_
The problem type associated with the current problem-specific ParameterList.
Helper class to initialize DefaultProblemTypeLists_ in class MasterList.
static Teuchos::RCP< Teuchos::ParameterList > problemSpecificList_
A ParameterList that holds all valid parameters and their default values for a particular problem typ...
static std::map< std::string, std::string > DefaultProblemTypeLists_
Map of string equivalents of the problemSpecificList_. The first entry is the problem type,...
static const std::string stringList_
String equivalent of the masterList_.
static Teuchos::RCP< const Teuchos::ParameterList > List()
Return a "master" list of all valid parameters and their default values.