We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357fd2d commit 33b9872Copy full SHA for 33b9872
ExampleCodes/EB/NodalPoisson/main.cpp
@@ -165,9 +165,7 @@ int main (int argc, char* argv[])
165
amrex::GMRESMLMG gmsolve(mlmg);
166
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());
170
- linop.postSolve(vmf);
+ linop.postSolve({&phi});
171
} else {
172
mlmg.solve({&phi}, {&q}, tol_rel, tol_abs);
173
}
0 commit comments