47 if (name ==
"verbosity") {
48 std::string verb =
"none";
49 if (value ==
"\"0\"") verb =
"none";
50 if (value ==
"\"1\"" || value ==
"\"2\"" || value ==
"\"3\"") verb =
"low";
51 if (value ==
"\"4\"" || value ==
"\"5\"" || value ==
"\"6\"") verb =
"medium";
52 if (value ==
"\"7\"" || value ==
"\"8\"") verb =
"high";
53 if (value ==
"\"9\"") verb =
"extreme";
54 if (value ==
"\"10\"") verb =
"test";
55 verb =
"\"" + verb +
"\"";
56 ss <<
"<Parameter name=\"verbosity\" type=\"string\" value=" << verb <<
"/>";
60 if (name ==
"cycle type") {
61 std::stringstream temp1; temp1 <<
"\"" <<
"MGV" <<
"\"";
62 std::stringstream temp2; temp2 <<
"\"" <<
"MGV" <<
"\"";
63 if (value == temp1.str() ) { ss <<
"<Parameter name=\"cycle type\" type=\"string\" value=\"V\"/>"; }
64 else if (value == temp2.str()) { ss <<
"<Parameter name=\"cycle type\" type=\"string\" value=\"W\"/>"; }
66 <<
"The parameter " << value <<
" is not supported by MueLu.");
71 if (name ==
"multigrid algorithm") {
72 std::stringstream temp; temp <<
"\"" <<
"1" <<
"\"";
73 if (value == temp.str() ) { ss <<
"<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"pg\"/>";
return ss.str(); }
79 if (name ==
"output filename") { ss <<
"<Parameter name=\"output filename\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
80 if (name ==
"number of equations") { ss <<
"<Parameter name=\"number of equations\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
81 if (name ==
"max levels") { ss <<
"<Parameter name=\"max levels\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
82 if (name ==
"W cycle start level") { ss <<
"<Parameter name=\"W cycle start level\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
83 if (name ==
"coarse grid correction scaling factor") { ss <<
"<Parameter name=\"coarse grid correction scaling factor\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
84 if (name ==
"fuse prolongation and update") { ss <<
"<Parameter name=\"fuse prolongation and update\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
85 if (name ==
"number of vectors") { ss <<
"<Parameter name=\"number of vectors\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
86 if (name ==
"problem: symmetric") { ss <<
"<Parameter name=\"problem: symmetric\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
87 if (name ==
"hierarchy label") { ss <<
"<Parameter name=\"hierarchy label\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
88 if (name ==
"aggregation: drop tol") { ss <<
"<Parameter name=\"aggregation: drop tol\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
89 if (name ==
"print initial parameters") { ss <<
"<Parameter name=\"print initial parameters\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
90 if (name ==
"print unused parameters") { ss <<
"<Parameter name=\"print unused parameters\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
91 if (name ==
"sa: damping factor") { ss <<
"<Parameter name=\"sa: damping factor\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
92 if (name ==
"sa: use filtered matrix") { ss <<
"<Parameter name=\"sa: use filtered matrix\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
93 if (name ==
"sa: eigen-analysis type") { ss <<
"<Parameter name=\"sa: eigen-analysis type\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
94 if (name ==
"sa: eigenvalue estimate num iterations") { ss <<
"<Parameter name=\"sa: eigenvalue estimate num iterations\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
95 if (name ==
"sa: use rowsumabs diagonal scaling") { ss <<
"<Parameter name=\"sa: use rowsumabs diagonal scaling\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
96 if (name ==
"sa: enforce constraints") { ss <<
"<Parameter name=\"sa: enforce constraints\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
97 if (name ==
"sa: max eigenvalue") { ss <<
"<Parameter name=\"sa: max eigenvalue\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
98 if (name ==
"sa: rowsumabs diagonal replacement tolerance") { ss <<
"<Parameter name=\"sa: rowsumabs diagonal replacement tolerance\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
99 if (name ==
"sa: rowsumabs use automatic diagonal tolerance") { ss <<
"<Parameter name=\"sa: rowsumabs use automatic diagonal tolerance\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
100 if (name ==
"sa: rowsumabs diagonal replacement value") { ss <<
"<Parameter name=\"sa: rowsumabs diagonal replacement value\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
101 if (name ==
"sa: rowsumabs replace single entry row with zero") { ss <<
"<Parameter name=\"sa: rowsumabs replace single entry row with zero\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
102 if (name ==
"replicate: npdes") { ss <<
"<Parameter name=\"replicate: npdes\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
103 if (name ==
"combine: numBlks") { ss <<
"<Parameter name=\"combine: numBlks\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
104 if (name ==
"pcoarsen: element") { ss <<
"<Parameter name=\"pcoarsen: element\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
105 if (name ==
"pcoarsen: schedule") { ss <<
"<Parameter name=\"pcoarsen: schedule\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
106 if (name ==
"pcoarsen: hi basis") { ss <<
"<Parameter name=\"pcoarsen: hi basis\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
107 if (name ==
"pcoarsen: lo basis") { ss <<
"<Parameter name=\"pcoarsen: lo basis\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
108 if (name ==
"smoother: neighborhood type") { ss <<
"<Parameter name=\"smoother: neighborhood type\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
109 if (name ==
"tentative: calculate qr") { ss <<
"<Parameter name=\"tentative: calculate qr\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
110 if (name ==
"tentative: constant column sums") { ss <<
"<Parameter name=\"tentative: constant column sums\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
111 if (name ==
"repartition: enable") { ss <<
"<Parameter name=\"repartition: enable\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
112 if (name ==
"repartition: start level") { ss <<
"<Parameter name=\"repartition: start level\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
113 if (name ==
"repartition: use map") { ss <<
"<Parameter name=\"repartition: use map\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
114 if (name ==
"repartition: use subcommunicators in place") { ss <<
"<Parameter name=\"repartition: use subcommunicators in place\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
115 if (name ==
"repartition: node repartition level") { ss <<
"<Parameter name=\"repartition: node repartition level\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
116 if (name ==
"repartition: node id") { ss <<
"<Parameter name=\"repartition: node id\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
117 if (name ==
"repartition: min rows per proc") { ss <<
"<Parameter name=\"repartition: min rows per proc\" type=\"int\" value=" << value <<
"/>";
return ss.str(); }
118 if (name ==
"repartition: max imbalance") { ss <<
"<Parameter name=\"repartition: max imbalance\" type=\"double\" value=" << value <<
"/>";
return ss.str(); }
119 if (name ==
"use external multigrid package") { ss <<
"<Parameter name=\"use external multigrid package\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
120 if (name ==
"maxwell1: dump matrices") { ss <<
"<Parameter name=\"maxwell1: dump matrices\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
121 if (name ==
"refmaxwell: mode") { ss <<
"<Parameter name=\"refmaxwell: mode\" type=\"string\" value=" << value <<
"/>";
return ss.str(); }
122 if (name ==
"refmaxwell: disable addon") { ss <<
"<Parameter name=\"refmaxwell: disable addon\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
123 if (name ==
"refmaxwell: use as preconditioner") { ss <<
"<Parameter name=\"refmaxwell: use as preconditioner\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
124 if (name ==
"refmaxwell: dump matrices") { ss <<
"<Parameter name=\"refmaxwell: dump matrices\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
125 if (name ==
"refmaxwell: subsolves on subcommunicators") { ss <<
"<Parameter name=\"refmaxwell: subsolves on subcommunicators\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
126 if (name ==
"refmaxwell: enable reuse") { ss <<
"<Parameter name=\"refmaxwell: enable reuse\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
127 if (name ==
"refmaxwell: skip first (1,1) level") { ss <<
"<Parameter name=\"refmaxwell: skip first (1,1) level\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
128 if (name ==
"refmaxwell: normalize nullspace") { ss <<
"<Parameter name=\"refmaxwell: normalize nullspace\" type=\"bool\" value=" << value <<
"/>";
return ss.str(); }
136 "<ParameterList name=\"MueLu\">"
137 "<Parameter name=\"problem: type\" type=\"string\" value=\"unknown\"/>"
138 "<Parameter name=\"verbosity\" type=\"string\" value=\"high\"/>"
139 "<Parameter name=\"output filename\" type=\"string\" value=\"\"/>"
140 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
141 "<Parameter name=\"max levels\" type=\"int\" value=\"10\"/>"
142 "<Parameter name=\"cycle type\" type=\"string\" value=\"V\"/>"
143 "<Parameter name=\"W cycle start level\" type=\"int\" value=\"0\"/>"
144 "<Parameter name=\"coarse grid correction scaling factor\" type=\"double\" value=\"1.0\"/>"
145 "<Parameter name=\"fuse prolongation and update\" type=\"bool\" value=\"false\"/>"
146 "<Parameter name=\"number of vectors\" type=\"int\" value=\"1\"/>"
147 "<Parameter name=\"problem: symmetric\" type=\"bool\" value=\"true\"/>"
148 "<Parameter name=\"xml parameter file\" type=\"string\" value=\"\"/>"
149 "<Parameter name=\"parameterlist: syntax\" type=\"string\" value=\"muelu\"/>"
150 "<Parameter name=\"hierarchy label\" type=\"string\" value=\"\"/>"
151 "<ParameterList name=\"matvec params\"/>"
152 "<Parameter name=\"half precision\" type=\"bool\" value=\"false\"/>"
153 "<Parameter name=\"smoother: pre or post\" type=\"string\" value=\"both\"/>"
154 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
155 "<Parameter name=\"smoother: pre type\" type=\"string\" value=\"RELAXATION\"/>"
156 "<Parameter name=\"smoother: post type\" type=\"string\" value=\"RELAXATION\"/>"
157 "<ParameterList name=\"smoother: params\"/>"
158 "<ParameterList name=\"smoother: pre params\"/>"
159 "<ParameterList name=\"smoother: post params\"/>"
160 "<Parameter name=\"smoother: overlap\" type=\"int\" value=\"0\"/>"
161 "<Parameter name=\"smoother: pre overlap\" type=\"int\" value=\"0\"/>"
162 "<Parameter name=\"smoother: post overlap\" type=\"int\" value=\"0\"/>"
163 "<Parameter name=\"coarse: max size\" type=\"int\" value=\"2000\"/>"
164 "<Parameter name=\"coarse: type\" type=\"string\" value=\"SuperLU\"/>"
165 "<ParameterList name=\"coarse: params\"/>"
166 "<Parameter name=\"coarse: overlap\" type=\"int\" value=\"0\"/>"
167 "<Parameter name=\"aggregation: type\" type=\"string\" value=\"uncoupled\"/>"
168 "<Parameter name=\"aggregation: mode\" type=\"string\" value=\"uncoupled\"/>"
169 "<Parameter name=\"aggregation: ordering\" type=\"string\" value=\"natural\"/>"
170 "<Parameter name=\"aggregation: phase 1 algorithm\" type=\"string\" value=\"Distance2\"/>"
171 "<Parameter name=\"aggregation: drop scheme\" type=\"string\" value=\"classical\"/>"
172 "<Parameter name=\"aggregation: classical scheme\" type=\"string\" value=\"direct\"/>"
173 "<Parameter name=\"aggregation: row sum drop tol\" type=\"double\" value=\"-1.0\"/>"
174 "<Parameter name=\"aggregation: block diagonal: interleaved blocksize\" type=\"int\" value=\"3\"/>"
175 "<Parameter name=\"aggregation: number of random vectors\" type=\"int\" value=\"10\"/>"
176 "<Parameter name=\"aggregation: number of times to pre or post smooth\" type=\"int\" value=\"10\"/>"
177 "<Parameter name=\"aggregation: penalty parameters\" type=\"Array(double)\" value=\"{12.,-.2,0,0,0} \"/>"
178 "<Parameter name=\"aggregation: distance laplacian directional weights\" type=\"Array(double)\" value=\"{1,1,1}\"/>"
179 "<Parameter name=\"aggregation: distance laplacian algo\" type=\"string\" value=\"default\"/>"
180 "<Parameter name=\"aggregation: classical algo\" type=\"string\" value=\"default\"/>"
181 "<Parameter name=\"aggregation: drop tol\" type=\"double\" value=\"0.0\"/>"
182 "<Parameter name=\"aggregation: use ml scaling of drop tol\" type=\"bool\" value=\"false\"/>"
183 "<Parameter name=\"aggregation: min agg size\" type=\"int\" value=\"2\"/>"
184 "<Parameter name=\"aggregation: max agg size\" type=\"int\" value=\"-1\"/>"
185 "<Parameter name=\"aggregation: compute aggregate qualities\" type=\"bool\" value=\"false\"/>"
186 "<Parameter name=\"aggregation: brick x size\" type=\"int\" value=\"2\"/>"
187 "<Parameter name=\"aggregation: brick y size\" type=\"int\" value=\"2\"/>"
188 "<Parameter name=\"aggregation: brick z size\" type=\"int\" value=\"2\"/>"
189 "<Parameter name=\"aggregation: brick x Dirichlet\" type=\"bool\" value=\"false\"/>"
190 "<Parameter name=\"aggregation: brick y Dirichlet\" type=\"bool\" value=\"false\"/>"
191 "<Parameter name=\"aggregation: brick z Dirichlet\" type=\"bool\" value=\"false\"/>"
192 "<Parameter name=\"aggregation: max selected neighbors\" type=\"int\" value=\"0\"/>"
193 "<Parameter name=\"aggregation: Dirichlet threshold\" type=\"double\" value=\"0.0\"/>"
194 "<Parameter name=\"aggregation: greedy Dirichlet\" type=\"bool\" value=\"false\"/>"
195 "<Parameter name=\"aggregation: deterministic\" type=\"bool\" value=\"false\"/>"
196 "<Parameter name=\"aggregation: coloring algorithm\" type=\"string\" value=\"serial\"/>"
197 "<Parameter name=\"aggregation: coloring: use color graph\" type=\"bool\" value=\"false\"/>"
198 "<Parameter name=\"aggregation: coloring: localize color graph\" type=\"bool\" value=\"true\"/>"
199 "<Parameter name=\"aggregation: enable phase 1\" type=\"bool\" value=\"true\"/>"
200 "<Parameter name=\"aggregation: enable phase 2a\" type=\"bool\" value=\"true\"/>"
201 "<Parameter name=\"aggregation: enable phase 2b\" type=\"bool\" value=\"true\"/>"
202 "<Parameter name=\"aggregation: enable phase 3\" type=\"bool\" value=\"true\"/>"
203 "<Parameter name=\"aggregation: match ML phase1\" type=\"bool\" value=\"false\"/>"
204 "<Parameter name=\"aggregation: match ML phase2a\" type=\"bool\" value=\"false\"/>"
205 "<Parameter name=\"aggregation: match ML phase2b\" type=\"bool\" value=\"false\"/>"
206 "<Parameter name=\"aggregation: phase2a agg factor\" type=\"double\" value=\"0.5\"/>"
207 "<Parameter name=\"aggregation: error on nodes with no on-rank neighbors\" type=\"bool\" value=\"false\"/>"
208 "<Parameter name=\"aggregation: phase3 avoid singletons\" type=\"bool\" value=\"false\"/>"
209 "<Parameter name=\"aggregation: allow empty prolongator columns\" type=\"bool\" value=\"false\"/>"
210 "<Parameter name=\"aggregation: preserve Dirichlet points\" type=\"bool\" value=\"false\"/>"
211 "<Parameter name=\"aggregation: dropping may create Dirichlet\" type=\"bool\" value=\"true\"/>"
212 "<Parameter name=\"aggregation: allow user-specified singletons\" type=\"bool\" value=\"false\"/>"
213 "<Parameter name=\"aggregation: use interface aggregation\" type=\"bool\" value=\"false\"/>"
214 "<Parameter name=\"aggregation: export visualization data\" type=\"bool\" value=\"false\"/>"
215 "<Parameter name=\"aggregation: output filename\" type=\"string\" value=\"\"/>"
216 "<Parameter name=\"aggregation: output file: time step\" type=\"int\" value=\"0\"/>"
217 "<Parameter name=\"aggregation: output file: iter\" type=\"int\" value=\"0\"/>"
218 "<Parameter name=\"aggregation: output file: agg style\" type=\"string\" value=\"Point Cloud\"/>"
219 "<Parameter name=\"aggregation: output file: fine graph edges\" type=\"bool\" value=\"false\"/>"
220 "<Parameter name=\"aggregation: output file: coarse graph edges\" type=\"bool\" value=\"false\"/>"
221 "<Parameter name=\"aggregation: output file: build colormap\" type=\"bool\" value=\"false\"/>"
222 "<ParameterList name=\"aggregation: params\"/>"
223 "<ParameterList name=\"strength-of-connection: params\"/>"
224 "<Parameter name=\"aggregation: mesh layout\" type=\"string\" value=\"Global Lexicographic\"/>"
225 "<Parameter name=\"aggregation: output type\" type=\"string\" value=\"Aggregates\"/>"
226 "<Parameter name=\"aggregation: coarsening rate\" type=\"string\" value=\"{3}\"/>"
227 "<Parameter name=\"aggregation: number of spatial dimensions\" type=\"int\" value=\"3\"/>"
228 "<Parameter name=\"aggregation: coarsening order\" type=\"int\" value=\"0\"/>"
229 "<Parameter name=\"aggregation: pairwise: size\" type=\"int\" value=\"8\"/>"
230 "<Parameter name=\"aggregation: pairwise: tie threshold\" type=\"double\" value=\"1e-6\"/>"
231 "<Parameter name=\"aggregate qualities: check symmetry\" type=\"bool\" value=\"false\"/>"
232 "<Parameter name=\"aggregate qualities: good aggregate threshold\" type=\"double\" value=\"100.0\"/>"
233 "<Parameter name=\"aggregate qualities: file output\" type=\"bool\" value=\"false\"/>"
234 "<Parameter name=\"aggregate qualities: file base\" type=\"string\" value=\"agg_qualities\"/>"
235 "<Parameter name=\"aggregate qualities: algorithm\" type=\"string\" value=\"forward\"/>"
236 "<Parameter name=\"aggregate qualities: zero threshold\" type=\"double\" value=\"1e-12\"/>"
237 "<Parameter name=\"aggregate qualities: percentiles\" type=\"Array(double)\" value=\"{}\"/>"
238 "<Parameter name=\"aggregate qualities: mode\" type=\"string\" value=\"eigenvalue\"/>"
239 "<ParameterList name=\"export data\"/>"
240 "<Parameter name=\"keep data\" type=\"string\" value=\"{}\"/>"
241 "<Parameter name=\"print initial parameters\" type=\"bool\" value=\"true\"/>"
242 "<Parameter name=\"print unused parameters\" type=\"bool\" value=\"true\"/>"
243 "<Parameter name=\"transpose: use implicit\" type=\"bool\" value=\"false\"/>"
244 "<Parameter name=\"transfers: half precision\" type=\"bool\" value=\"false\"/>"
245 "<Parameter name=\"nullspace: calculate rotations\" type=\"bool\" value=\"false\"/>"
246 "<Parameter name=\"nullspace: suppress dimension check\" type=\"bool\" value=\"false\"/>"
247 "<Parameter name=\"restriction: scale nullspace\" type=\"bool\" value=\"false\"/>"
248 "<Parameter name=\"use kokkos refactor\" type=\"bool\" value=\"false\"/>"
249 "<Parameter name=\"synchronize factory timers\" type=\"bool\" value=\"false\"/>"
250 "<Parameter name=\"rap: triple product\" type=\"bool\" value=\"false\"/>"
251 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
252 "<Parameter name=\"toggle: mode\" type=\"string\" value=\"semicoarsen\"/>"
253 "<Parameter name=\"semicoarsen: coarsen rate\" type=\"int\" value=\"3\"/>"
254 "<Parameter name=\"semicoarsen: piecewise constant\" type=\"bool\" value=\"false\"/>"
255 "<Parameter name=\"semicoarsen: piecewise linear\" type=\"bool\" value=\"false\"/>"
256 "<Parameter name=\"semicoarsen: calculate nonsym restriction\" type=\"bool\" value=\"false\"/>"
257 "<Parameter name=\"semicoarsen: number of levels\" type=\"int\" value=\"3\"/>"
258 "<Parameter name=\"linedetection: orientation\" type=\"string\" value=\"vertical\"/>"
259 "<Parameter name=\"linedetection: num layers\" type=\"int\" value=\"-1\"/>"
260 "<Parameter name=\"sa: damping factor\" type=\"double\" value=\"1.33\"/>"
261 "<Parameter name=\"sa: use filtered matrix\" type=\"bool\" value=\"true\"/>"
262 "<Parameter name=\"sa: calculate eigenvalue estimate\" type=\"bool\" value=\"false\"/>"
263 "<Parameter name=\"sa: eigen-analysis type\" type=\"string\" value=\"power-method\"/>"
264 "<Parameter name=\"sa: eigenvalue estimate num iterations\" type=\"int\" value=\"10\"/>"
265 "<Parameter name=\"sa: use rowsumabs diagonal scaling\" type=\"bool\" value=\"false\"/>"
266 "<Parameter name=\"sa: enforce constraints\" type=\"bool\" value=\"false\"/>"
267 "<Parameter name=\"sa: max eigenvalue\" type=\"double\" value=\"-1.0\"/>"
268 "<Parameter name=\"sa: rowsumabs diagonal replacement tolerance\" type=\"double\" value=\"-1.0\"/>"
269 "<Parameter name=\"sa: rowsumabs use automatic diagonal tolerance\" type=\"bool\" value=\"false\"/>"
270 "<Parameter name=\"sa: rowsumabs diagonal replacement value\" type=\"double\" value=\"0.0\"/>"
271 "<Parameter name=\"sa: rowsumabs replace single entry row with zero\" type=\"bool\" value=\"true\"/>"
272 "<Parameter name=\"replicate: npdes\" type=\"int\" value=\"1\"/>"
273 "<Parameter name=\"combine: numBlks\" type=\"int\" value=\"1\"/>"
274 "<Parameter name=\"interp: build coarse coordinates\" type=\"bool\" value=\"true\"/>"
275 "<ParameterList name=\"transfer: params\"/>"
276 "<Parameter name=\"pcoarsen: element\" type=\"string\" value=\"\"/>"
277 "<Parameter name=\"pcoarsen: schedule\" type=\"string\" value=\"\"/>"
278 "<Parameter name=\"pcoarsen: hi basis\" type=\"string\" value=\"\"/>"
279 "<Parameter name=\"pcoarsen: lo basis\" type=\"string\" value=\"\"/>"
280 "<Parameter name=\"smoother: neighborhood type\" type=\"string\" value=\"\"/>"
281 "<Parameter name=\"filtered matrix: use lumping\" type=\"bool\" value=\"true\"/>"
282 "<Parameter name=\"filtered matrix: use spread lumping\" type=\"bool\" value=\"false\"/>"
283 "<Parameter name=\"filtered matrix: spread lumping diag dom growth factor\" type=\"double\" value=\"1.1\"/>"
284 "<Parameter name=\"filtered matrix: spread lumping diag dom cap\" type=\"double\" value=\"2.0\"/>"
285 "<Parameter name=\"filtered matrix: use root stencil\" type=\"bool\" value=\"false\"/>"
286 "<Parameter name=\"filtered matrix: Dirichlet threshold\" type=\"double\" value=\"-1.0\"/>"
287 "<Parameter name=\"filtered matrix: reuse eigenvalue\" type=\"bool\" value=\"true\"/>"
288 "<Parameter name=\"filtered matrix: reuse graph\" type=\"bool\" value=\"true\"/>"
289 "<Parameter name=\"emin: iterative method\" type=\"string\" value=\"cg\"/>"
290 "<Parameter name=\"emin: num iterations\" type=\"int\" value=\"2\"/>"
291 "<Parameter name=\"emin: num reuse iterations\" type=\"int\" value=\"1\"/>"
292 "<Parameter name=\"emin: pattern\" type=\"string\" value=\"AkPtent\"/>"
293 "<Parameter name=\"emin: pattern order\" type=\"int\" value=\"1\"/>"
294 "<Parameter name=\"emin: use filtered matrix\" type=\"bool\" value=\"true\"/>"
295 "<Parameter name=\"tentative: calculate qr\" type=\"bool\" value=\"true\"/>"
296 "<Parameter name=\"tentative: constant column sums\" type=\"bool\" value=\"false\"/>"
297 "<Parameter name=\"tentative: build coarse coordinates\" type=\"bool\" value=\"true\"/>"
298 "<Parameter name=\"repartition: enable\" type=\"bool\" value=\"false\"/>"
299 "<Parameter name=\"repartition: partitioner\" type=\"string\" value=\"zoltan2\"/>"
300 "<ParameterList name=\"repartition: params\"/>"
301 "<Parameter name=\"repartition: start level\" type=\"int\" value=\"2\"/>"
302 "<Parameter name=\"repartition: use map\" type=\"bool\" value=\"false\"/>"
303 "<Parameter name=\"repartition: use subcommunicators in place\" type=\"bool\" value=\"false\"/>"
304 "<Parameter name=\"repartition: node repartition level\" type=\"int\" value=\"-1\"/>"
305 "<Parameter name=\"repartition: node id\" type=\"int\" value=\"-1\"/>"
306 "<Parameter name=\"repartition: min rows per proc\" type=\"int\" value=\"800\"/>"
307 "<Parameter name=\"repartition: target rows per proc\" type=\"int\" value=\"0\"/>"
308 "<Parameter name=\"repartition: min rows per thread\" type=\"int\" value=\"0\"/>"
309 "<Parameter name=\"repartition: target rows per thread\" type=\"int\" value=\"0\"/>"
310 "<Parameter name=\"repartition: max imbalance\" type=\"double\" value=\"1.2\"/>"
311 "<Parameter name=\"repartition: remap parts\" type=\"bool\" value=\"true\"/>"
312 "<Parameter name=\"repartition: remap num values\" type=\"int\" value=\"4\"/>"
313 "<Parameter name=\"repartition: remap accept partition\" type=\"bool\" value=\"true\"/>"
314 "<Parameter name=\"repartition: print partition distribution\" type=\"bool\" value=\"false\"/>"
315 "<Parameter name=\"repartition: rebalance P and R\" type=\"bool\" value=\"false\"/>"
316 "<Parameter name=\"repartition: explicit via new copy rebalance P and R\" type=\"bool\" value=\"false\"/>"
317 "<Parameter name=\"repartition: rebalance Nullspace\" type=\"bool\" value=\"true\"/>"
318 "<Parameter name=\"repartition: use subcommunicators\" type=\"bool\" value=\"true\"/>"
319 "<Parameter name=\"repartition: save importer\" type=\"bool\" value=\"false\"/>"
320 "<Parameter name=\"rap: relative diagonal floor\" type=\"Array(double)\" value=\"{}\"/>"
321 "<Parameter name=\"rap: fix zero diagonals\" type=\"bool\" value=\"false\"/>"
322 "<Parameter name=\"rap: fix zero diagonals threshold\" type=\"double\" value=\"0.\"/>"
323 "<Parameter name=\"rap: fix zero diagonals replacement\" type=\"double\" value=\"1.\"/>"
324 "<Parameter name=\"rap: shift\" type=\"double\" value=\"0.0\"/>"
325 "<Parameter name=\"rap: shift diagonal M\" type=\"bool\" value=\"false\"/>"
326 "<Parameter name=\"rap: shift low storage\" type=\"bool\" value=\"false\"/>"
327 "<Parameter name=\"rap: shift array\" type=\"Array(double)\" value=\"{}\"/>"
328 "<Parameter name=\"rap: cfl array\" type=\"Array(double)\" value=\"{}\"/>"
329 "<Parameter name=\"rap: algorithm\" type=\"string\" value=\"galerkin\"/>"
330 "<ParameterList name=\"matrixmatrix: kernel params\"/>"
331 "<Parameter name=\"matrixmatrix: kernel params:MM_TAFC_OptimizationCoreCount \" type=\"int\" value=\"3000 \"/>"
332 "<Parameter name=\"isMatrixMatrix_TransferAndFillComplete \" type=\"bool\" value=\"false\"/>"
333 "<Parameter name=\"reuse: type\" type=\"string\" value=\"none\"/>"
334 "<Parameter name=\"use external multigrid package\" type=\"string\" value=\"none\"/>"
335 "<ParameterList name=\"amgx:params\"/>"
336 "<Parameter name=\"debug: graph level\" type=\"int\" value=\"-2\"/>"
337 "<Parameter name=\"maxwell1: mode\" type=\"string\" value=\"standard\"/>"
338 "<ParameterList name=\"maxwell1: 11list\"/>"
339 "<ParameterList name=\"maxwell1: 22list\"/>"
340 "<Parameter name=\"maxwell1: dump matrices\" type=\"bool\" value=\"false\"/>"
341 "<Parameter name=\"maxwell1: nodal smoother fix zero diagonal threshold\" type=\"double\" value=\"1e-10\"/>"
342 "<Parameter name=\"refmaxwell: mode\" type=\"string\" value=\"additive\"/>"
343 "<Parameter name=\"refmaxwell: disable addon\" type=\"bool\" value=\"true\"/>"
344 "<ParameterList name=\"refmaxwell: 11list\"/>"
345 "<ParameterList name=\"refmaxwell: 22list\"/>"
346 "<Parameter name=\"refmaxwell: use as preconditioner\" type=\"bool\" value=\"false\"/>"
347 "<Parameter name=\"refmaxwell: dump matrices\" type=\"bool\" value=\"false\"/>"
348 "<Parameter name=\"refmaxwell: subsolves on subcommunicators\" type=\"bool\" value=\"false\"/>"
349 "<Parameter name=\"refmaxwell: enable reuse\" type=\"bool\" value=\"false\"/>"
350 "<Parameter name=\"refmaxwell: skip first (1,1) level\" type=\"bool\" value=\"true\"/>"
351 "<Parameter name=\"refmaxwell: normalize nullspace\" type=\"bool\" value=\"false\"/>"
357 "<ParameterList name=\"MueLu\">"
359 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
361 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
363 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
367 (
"Poisson-2D-complex",
369 "<ParameterList name=\"MueLu\">"
371 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
373 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
375 "<ParameterList name=\"smoother: params\">"
377 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
381 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
387 "<ParameterList name=\"MueLu\">"
389 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
391 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
393 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
397 (
"Poisson-3D-complex",
399 "<ParameterList name=\"MueLu\">"
401 "<Parameter name=\"number of equations\" type=\"int\" value=\"1\"/>"
403 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
405 "<ParameterList name=\"smoother: params\">"
407 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
411 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
417 "<ParameterList name=\"MueLu\">"
419 "<Parameter name=\"number of equations\" type=\"int\" value=\"2\"/>"
421 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
423 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
427 (
"Elasticity-2D-complex",
429 "<ParameterList name=\"MueLu\">"
431 "<Parameter name=\"number of equations\" type=\"int\" value=\"2\"/>"
433 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
435 "<ParameterList name=\"smoother: params\">"
437 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
441 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
447 "<ParameterList name=\"MueLu\">"
449 "<Parameter name=\"number of equations\" type=\"int\" value=\"3\"/>"
451 "<Parameter name=\"smoother: type\" type=\"string\" value=\"CHEBYSHEV\"/>"
453 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
457 (
"Elasticity-3D-complex",
459 "<ParameterList name=\"MueLu\">"
461 "<Parameter name=\"number of equations\" type=\"int\" value=\"3\"/>"
463 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
465 "<ParameterList name=\"smoother: params\">"
467 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Symmetric Gauss-Seidel\"/>"
471 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"sa\"/>"
477 "<ParameterList name=\"MueLu\">"
479 "<Parameter name=\"smoother: type\" type=\"string\" value=\"SCHWARZ\"/>"
481 "<ParameterList name=\"smoother: params\">"
483 "<Parameter name=\"schwarz: overlap level\" type=\"int\" value=\"1\"/>"
485 "<Parameter name=\"schwarz: combine mode\" type=\"string\" value=\"Zero\"/>"
487 "<Parameter name=\"schwarz: use reordering\" type=\"bool\" value=\"false\"/>"
489 "<Parameter name=\"subdomain solver name\" type=\"string\" value=\"RILUK\"/>"
491 "<ParameterList name=\"subdomain solver parameters\">"
493 "<Parameter name=\"fact: iluk level-of-fill\" type=\"int\" value=\"0\"/>"
495 "<Parameter name=\"fact: absolute threshold\" type=\"double\" value=\"0.\"/>"
497 "<Parameter name=\"fact: relative threshold\" type=\"double\" value=\"1.\"/>"
499 "<Parameter name=\"fact: relax value\" type=\"double\" value=\"0.\"/>"
505 "<Parameter name=\"transpose: use implicit\" type=\"bool\" value=\"true\"/>"
507 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"unsmoothed\"/>"
511 (
"ConvectionDiffusion",
513 "<ParameterList name=\"MueLu\">"
515 "<Parameter name=\"problem: symmetric\" type=\"bool\" value=\"false\"/>"
517 "<Parameter name=\"smoother: type\" type=\"string\" value=\"RELAXATION\"/>"
519 "<ParameterList name=\"smoother: params\">"
521 "<Parameter name=\"relaxation: type\" type=\"string\" value=\"Gauss-Seidel\"/>"
525 "<Parameter name=\"multigrid algorithm\" type=\"string\" value=\"pg\"/>"
527 "<Parameter name=\"sa: use filtered matrix\" type=\"bool\" value=\"true\"/>"
529 "<Parameter name=\"emin: use filtered matrix\" type=\"bool\" value=\"true\"/>"
536 (
"default values",
"problem: type")
538 (
"ML output",
"verbosity")
540 (
"output filename",
"output filename")
542 (
"PDE equations",
"number of equations")
544 (
"max levels",
"max levels")
546 (
"prec type",
"cycle type")
548 (
"W cycle start level",
"W cycle start level")
550 (
"coarse grid correction scaling factor",
"coarse grid correction scaling factor")
552 (
"fuse prolongation and update",
"fuse prolongation and update")
554 (
"number of vectors",
"number of vectors")
556 (
"problem: symmetric",
"problem: symmetric")
558 (
"xml parameter file",
"xml parameter file")
560 (
"parameterlist: syntax",
"parameterlist: syntax")
562 (
"ML label",
"hierarchy label")
564 (
"matvec params",
"matvec params")
566 (
"half precision",
"half precision")
568 (
"smoother: pre or post",
"smoother: pre or post")
570 (
"smoother: type",
"smoother: type")
572 (
"smoother: pre type",
"smoother: pre type")
574 (
"smoother: post type",
"smoother: post type")
576 (
"smoother: params",
"smoother: params")
578 (
"smoother: pre params",
"smoother: pre params")
580 (
"smoother: post params",
"smoother: post params")
582 (
"smoother: overlap",
"smoother: overlap")
584 (
"smoother: pre overlap",
"smoother: pre overlap")
586 (
"smoother: post overlap",
"smoother: post overlap")
588 (
"max size",
"coarse: max size")
590 (
"coarse: type",
"coarse: type")
592 (
"coarse: params",
"coarse: params")
594 (
"coarse: overlap",
"coarse: overlap")
596 (
"aggregation: type",
"aggregation: type")
598 (
"aggregation: mode",
"aggregation: mode")
600 (
"aggregation: ordering",
"aggregation: ordering")
602 (
"aggregation: phase 1 algorithm",
"aggregation: phase 1 algorithm")
604 (
"aggregation: drop scheme",
"aggregation: drop scheme")
606 (
"aggregation: classical scheme",
"aggregation: classical scheme")
608 (
"aggregation: row sum drop tol",
"aggregation: row sum drop tol")
610 (
"aggregation: block diagonal: interleaved blocksize",
"aggregation: block diagonal: interleaved blocksize")
612 (
"aggregation: number of random vectors",
"aggregation: number of random vectors")
614 (
"aggregation: number of times to pre or post smooth",
"aggregation: number of times to pre or post smooth")
616 (
"aggregation: penalty parameters",
"aggregation: penalty parameters")
618 (
"aggregation: distance laplacian directional weights",
"aggregation: distance laplacian directional weights")
620 (
"aggregation: distance laplacian algo",
"aggregation: distance laplacian algo")
622 (
"aggregation: classical algo",
"aggregation: classical algo")
624 (
"aggregation: threshold",
"aggregation: drop tol")
626 (
"aggregation: use ml scaling of drop tol",
"aggregation: use ml scaling of drop tol")
628 (
"aggregation: min agg size",
"aggregation: min agg size")
630 (
"aggregation: max agg size",
"aggregation: max agg size")
632 (
"aggregation: compute aggregate qualities",
"aggregation: compute aggregate qualities")
634 (
"aggregation: brick x size",
"aggregation: brick x size")
636 (
"aggregation: brick y size",
"aggregation: brick y size")
638 (
"aggregation: brick z size",
"aggregation: brick z size")
640 (
"aggregation: brick x Dirichlet",
"aggregation: brick x Dirichlet")
642 (
"aggregation: brick y Dirichlet",
"aggregation: brick y Dirichlet")
644 (
"aggregation: brick z Dirichlet",
"aggregation: brick z Dirichlet")
646 (
"aggregation: max selected neighbors",
"aggregation: max selected neighbors")
648 (
"aggregation: Dirichlet threshold",
"aggregation: Dirichlet threshold")
650 (
"aggregation: greedy Dirichlet",
"aggregation: greedy Dirichlet")
652 (
"aggregation: deterministic",
"aggregation: deterministic")
654 (
"aggregation: coloring algorithm",
"aggregation: coloring algorithm")
656 (
"aggregation: coloring: use color graph",
"aggregation: coloring: use color graph")
658 (
"aggregation: coloring: localize color graph",
"aggregation: coloring: localize color graph")
660 (
"aggregation: enable phase 1",
"aggregation: enable phase 1")
662 (
"aggregation: enable phase 2a",
"aggregation: enable phase 2a")
664 (
"aggregation: enable phase 2b",
"aggregation: enable phase 2b")
666 (
"aggregation: enable phase 3",
"aggregation: enable phase 3")
668 (
"aggregation: match ML phase1",
"aggregation: match ML phase1")
670 (
"aggregation: match ML phase2a",
"aggregation: match ML phase2a")
672 (
"aggregation: match ML phase2b",
"aggregation: match ML phase2b")
674 (
"aggregation: phase2a agg factor",
"aggregation: phase2a agg factor")
676 (
"aggregation: error on nodes with no on-rank neighbors",
"aggregation: error on nodes with no on-rank neighbors")
678 (
"aggregation: phase3 avoid singletons",
"aggregation: phase3 avoid singletons")
680 (
"aggregation: allow empty prolongator columns",
"aggregation: allow empty prolongator columns")
682 (
"aggregation: preserve Dirichlet points",
"aggregation: preserve Dirichlet points")
684 (
"aggregation: dropping may create Dirichlet",
"aggregation: dropping may create Dirichlet")
686 (
"aggregation: allow user-specified singletons",
"aggregation: allow user-specified singletons")
688 (
"aggregation: use interface aggregation",
"aggregation: use interface aggregation")
690 (
"aggregation: export visualization data",
"aggregation: export visualization data")
692 (
"aggregation: output filename",
"aggregation: output filename")
694 (
"aggregation: output file: time step",
"aggregation: output file: time step")
696 (
"aggregation: output file: iter",
"aggregation: output file: iter")
698 (
"aggregation: output file: agg style",
"aggregation: output file: agg style")
700 (
"aggregation: output file: fine graph edges",
"aggregation: output file: fine graph edges")
702 (
"aggregation: output file: coarse graph edges",
"aggregation: output file: coarse graph edges")
704 (
"aggregation: output file: build colormap",
"aggregation: output file: build colormap")
706 (
"aggregation: params",
"aggregation: params")
708 (
"strength-of-connection: params",
"strength-of-connection: params")
710 (
"aggregation: mesh layout",
"aggregation: mesh layout")
712 (
"aggregation: output type",
"aggregation: output type")
714 (
"aggregation: coarsening rate",
"aggregation: coarsening rate")
716 (
"aggregation: number of spatial dimensions",
"aggregation: number of spatial dimensions")
718 (
"aggregation: coarsening order",
"aggregation: coarsening order")
720 (
"aggregation: pairwise: size",
"aggregation: pairwise: size")
722 (
"aggregation: pairwise: tie threshold",
"aggregation: pairwise: tie threshold")
724 (
"aggregate qualities: check symmetry",
"aggregate qualities: check symmetry")
726 (
"aggregate qualities: good aggregate threshold",
"aggregate qualities: good aggregate threshold")
728 (
"aggregate qualities: file output",
"aggregate qualities: file output")
730 (
"aggregate qualities: file base",
"aggregate qualities: file base")
732 (
"aggregate qualities: algorithm",
"aggregate qualities: algorithm")
734 (
"aggregate qualities: zero threshold",
"aggregate qualities: zero threshold")
736 (
"aggregate qualities: percentiles",
"aggregate qualities: percentiles")
738 (
"aggregate qualities: mode",
"aggregate qualities: mode")
740 (
"export data",
"export data")
742 (
"keep data",
"keep data")
744 (
"ML print initial list",
"print initial parameters")
746 (
"print unused",
"print unused parameters")
748 (
"transpose: use implicit",
"transpose: use implicit")
750 (
"transfers: half precision",
"transfers: half precision")
752 (
"nullspace: calculate rotations",
"nullspace: calculate rotations")
754 (
"nullspace: suppress dimension check",
"nullspace: suppress dimension check")
756 (
"restriction: scale nullspace",
"restriction: scale nullspace")
758 (
"use kokkos refactor",
"use kokkos refactor")
760 (
"synchronize factory timers",
"synchronize factory timers")
762 (
"rap: triple product",
"rap: triple product")
764 (
"energy minimization: enable",
"multigrid algorithm")
766 (
"toggle: mode",
"toggle: mode")
768 (
"semicoarsen: coarsen rate",
"semicoarsen: coarsen rate")
770 (
"semicoarsen: piecewise constant",
"semicoarsen: piecewise constant")
772 (
"semicoarsen: piecewise linear",
"semicoarsen: piecewise linear")
774 (
"semicoarsen: calculate nonsym restriction",
"semicoarsen: calculate nonsym restriction")
776 (
"semicoarsen: number of levels",
"semicoarsen: number of levels")
778 (
"linedetection: orientation",
"linedetection: orientation")
780 (
"linedetection: num layers",
"linedetection: num layers")
782 (
"aggregation: damping factor",
"sa: damping factor")
784 (
"aggregation aux: enable",
"sa: use filtered matrix")
786 (
"sa: calculate eigenvalue estimate",
"sa: calculate eigenvalue estimate")
788 (
"sa: eigen-analysis type",
"sa: eigen-analysis type")
790 (
"eigen-analysis: iterations",
"sa: eigenvalue estimate num iterations")
792 (
"not supported by ML",
"sa: use rowsumabs diagonal scaling")
794 (
"not supported by ML",
"sa: enforce constraints")
796 (
"not supported by ML",
"sa: max eigenvalue")
798 (
"not supported by ML",
"sa: rowsumabs diagonal replacement tolerance")
800 (
"not supported by ML",
"sa: rowsumabs use automatic diagonal tolerance")
802 (
"not supported by ML",
"sa: rowsumabs diagonal replacement value")
804 (
"not supported by ML",
"sa: rowsumabs replace single entry row with zero")
806 (
"not supported by ML",
"replicate: npdes")
808 (
"not supported by ML",
"combine: numBlks")
810 (
"interp: build coarse coordinates",
"interp: build coarse coordinates")
812 (
"transfer: params",
"transfer: params")
814 (
"pcoarsen: element",
"pcoarsen: element")
816 (
"pcoarsen: schedule",
"pcoarsen: schedule")
818 (
"pcoarsen: hi basis",
"pcoarsen: hi basis")
820 (
"pcoarsen: lo basis",
"pcoarsen: lo basis")
822 (
"smoother: neighborhood type",
"smoother: neighborhood type")
824 (
"filtered matrix: use lumping",
"filtered matrix: use lumping")
826 (
"filtered matrix: use spread lumping",
"filtered matrix: use spread lumping")
828 (
"filtered matrix: spread lumping diag dom growth factor",
"filtered matrix: spread lumping diag dom growth factor")
830 (
"filtered matrix: spread lumping diag dom cap",
"filtered matrix: spread lumping diag dom cap")
832 (
"filtered matrix: use root stencil",
"filtered matrix: use root stencil")
834 (
"filtered matrix: Dirichlet threshold",
"filtered matrix: Dirichlet threshold")
836 (
"filtered matrix: reuse eigenvalue",
"filtered matrix: reuse eigenvalue")
838 (
"filtered matrix: reuse graph",
"filtered matrix: reuse graph")
840 (
"emin: iterative method",
"emin: iterative method")
842 (
"emin: num iterations",
"emin: num iterations")
844 (
"emin: num reuse iterations",
"emin: num reuse iterations")
846 (
"emin: pattern",
"emin: pattern")
848 (
"emin: pattern order",
"emin: pattern order")
850 (
"emin: use filtered matrix",
"emin: use filtered matrix")
852 (
"tentative: calculate qr",
"tentative: calculate qr")
854 (
"tentative: constant column sums",
"tentative: constant column sums")
856 (
"tentative: build coarse coordinates",
"tentative: build coarse coordinates")
858 (
"repartition: enable",
"repartition: enable")
860 (
"repartition: partitioner",
"repartition: partitioner")
862 (
"repartition: params",
"repartition: params")
864 (
"repartition: start level",
"repartition: start level")
866 (
"repartition: use map",
"repartition: use map")
868 (
"repartition: use subcommunicators in place",
"repartition: use subcommunicators in place")
870 (
"repartition: node repartition level",
"repartition: node repartition level")
872 (
"repartition: node id",
"repartition: node id")
874 (
"repartition: min per proc",
"repartition: min rows per proc")
876 (
"repartition: target rows per proc",
"repartition: target rows per proc")
878 (
"repartition: min rows per thread",
"repartition: min rows per thread")
880 (
"repartition: target rows per thread",
"repartition: target rows per thread")
882 (
"repartition: max min ratio",
"repartition: max imbalance")
884 (
"repartition: remap parts",
"repartition: remap parts")
886 (
"repartition: remap num values",
"repartition: remap num values")
888 (
"repartition: remap accept partition",
"repartition: remap accept partition")
890 (
"repartition: print partition distribution",
"repartition: print partition distribution")
892 (
"repartition: rebalance P and R",
"repartition: rebalance P and R")
894 (
"repartition: explicit via new copy rebalance P and R",
"repartition: explicit via new copy rebalance P and R")
896 (
"repartition: rebalance Nullspace",
"repartition: rebalance Nullspace")
898 (
"repartition: use subcommunicators",
"repartition: use subcommunicators")
900 (
"repartition: save importer",
"repartition: save importer")
902 (
"rap: relative diagonal floor",
"rap: relative diagonal floor")
904 (
"rap: fix zero diagonals",
"rap: fix zero diagonals")
906 (
"rap: fix zero diagonals threshold",
"rap: fix zero diagonals threshold")
908 (
"rap: fix zero diagonals replacement",
"rap: fix zero diagonals replacement")
910 (
"rap: shift",
"rap: shift")
912 (
"rap: shift diagonal M",
"rap: shift diagonal M")
914 (
"rap: shift low storage",
"rap: shift low storage")
916 (
"rap: shift array",
"rap: shift array")
918 (
"rap: cfl array",
"rap: cfl array")
920 (
"rap: algorithm",
"rap: algorithm")
922 (
"matrixmatrix: kernel params",
"matrixmatrix: kernel params")
924 (
"matrixmatrix: kernel params:MM_TAFC_OptimizationCoreCount ",
"matrixmatrix: kernel params:MM_TAFC_OptimizationCoreCount ")
926 (
"isMatrixMatrix_TransferAndFillComplete ",
"isMatrixMatrix_TransferAndFillComplete ")
928 (
"reuse: type",
"reuse: type")
930 (
"use external multigrid package",
"use external multigrid package")
932 (
"amgx:params",
"amgx:params")
934 (
"debug: graph level",
"debug: graph level")
936 (
"maxwell1: mode",
"maxwell1: mode")
938 (
"maxwell1: 11list",
"maxwell1: 11list")
940 (
"maxwell1: 22list",
"maxwell1: 22list")
942 (
"maxwell1: dump matrices",
"maxwell1: dump matrices")
944 (
"maxwell1: nodal smoother fix zero diagonal threshold",
"maxwell1: nodal smoother fix zero diagonal threshold")
946 (
"refmaxwell: mode",
"refmaxwell: mode")
948 (
"refmaxwell: disable addon",
"refmaxwell: disable addon")
950 (
"refmaxwell: 11list",
"refmaxwell: 11list")
952 (
"refmaxwell: 22list",
"refmaxwell: 22list")
954 (
"zero starting solution",
"refmaxwell: use as preconditioner")
956 (
"refmaxwell: dump matrices",
"refmaxwell: dump matrices")
958 (
"refmaxwell: subsolves on subcommunicators",
"refmaxwell: subsolves on subcommunicators")
960 (
"refmaxwell: enable reuse",
"refmaxwell: enable reuse")
962 (
"refmaxwell: skip first (1,1) level",
"refmaxwell: skip first (1,1) level")
964 (
"refmaxwell: normalize nullspace",
"refmaxwell: normalize nullspace")
static std::map< std::string, std::string > ML2MueLuLists_
Map of ML parameter strings to corresponding MueLu parametes.
static const std::string stringList_
String equivalent of the 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::string interpretParameterName(const std::string &name, const std::string &value)
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
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.
Exception throws to report errors in the internal logical of the program.
static Teuchos::RCP< const Teuchos::ParameterList > List()
Return a "master" list of all valid parameters and their default values.
Helper class to initialize DefaultProblemTypeLists_ in class MasterList.
static std::map< std::string, std::string > DefaultProblemTypeLists_
Map of string equivalents of the problemSpecificList_. The first entry is the problem type...
static std::string problemType_
The problem type associated with the current problem-specific ParameterList.