style fix
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user