style fix

This commit is contained in:
Wenhao Huang
2018-02-20 11:10:23 +08:00
parent 2e8159127f
commit de8fcd1aa2
@@ -84,7 +84,7 @@ class SimpleResidueTermination
// Check if termination criterion is met.
// If maxIterations == 0, there is no iteration limit.
return (residue < minResidue ||
((maxIterations != 0) && (iteration > maxIterations)));
(maxIterations != 0 && iteration > maxIterations));
}
//! Get current value of residue