Skip to content

Commit

Permalink
More minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eebasso committed Oct 16, 2023
1 parent babd315 commit 7961129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/LinearSolvers/MLMG/AMReX_MLCGSolver.H
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ MLCGSolverT<MF>::solve_bicgstab (MF& sol, const MF& rhs, RT eps_rel, RT eps_abs)
return ret;
}

rho = dotxy(rh,r); // Move this to here to elminate usage of rho_1
rho = dotxy(rh,r); // Move this to here to eliminate usage of rho_1

p.LocalCopy(r,0,0,ncomp,nghost); // This is the true initialization. Move this to here to avoid iter==1 check every iteration

Expand Down

0 comments on commit 7961129

Please sign in to comment.