Merge pull request #1233 from nairr/term_output_mod

Multiple problem logging for linear solver failure
This commit is contained in:
Atgeirr Flø Rasmussen
2017-06-26 13:58:21 +02:00
committed by GitHub
2 changed files with 2 additions and 5 deletions

View File

@@ -446,9 +446,6 @@ namespace Opm
// Check for failure of linear solver.
if (!parameters_.ignoreConvergenceFailure_ && !result.converged) {
const std::string msg("Convergence failure for linear solver.");
if (isIORank_) {
OpmLog::problem(msg);
}
OPM_THROW_NOLOG(LinearSolverProblem, msg);
}
}