We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c4fdcf commit 357fd2dCopy full SHA for 357fd2d
ExampleCodes/EB/NodalPoisson/main.cpp
@@ -158,12 +158,12 @@ int main (int argc, char* argv[])
158
const Real tol_abs = 0.0;
159
160
mlmg.setVerbose(verbose);
161
-
162
// Solve linear system
163
phi.setVal(0.0); // initial guess for phi
164
165
if (use_GMRES) {
166
amrex::GMRESMLMG gmsolve(mlmg);
+ gmsolve.setVerbose(verbose);
167
gmsolve.solve(phi, q, tol_rel, tol_abs);
168
amrex::Vector<amrex::MultiFab> vmf;
169
vmf.emplace_back(phi, amrex::make_alias, 0, phi.nComp());
0 commit comments