Skip to content

Commit

Permalink
Whitespace after pw == RT(0.0 for consistent style
Browse files Browse the repository at this point in the history
  • Loading branch information
eebasso committed Dec 6, 2023
1 parent ec925ae commit 4b8b724
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 @@ -312,7 +312,7 @@ MLCGSolverT<MF>::solve_cg (MF& sol, const MF& rhs, RT eps_rel, RT eps_abs)
Lp.apply(amrlev, mglev, q, p, MLLinOpT<MF>::BCMode::Homogeneous, MLLinOpT<MF>::StateMode::Correction);

const RT pw = dotxy(p,q);
if ( pw == RT(0.0))
if ( pw == RT(0.0) )
{
ret = 1; break;
}
Expand Down

0 comments on commit 4b8b724

Please sign in to comment.