log problem if asked to continue with nonconverged nonlinear solver.

The user has explicitly asked for this behavior using
--solver-continue-on-convergence-failure=true in this rare case.
This commit is contained in:
Markus Blatt 2023-11-08 17:16:21 +01:00
parent 5531c63df6
commit 0cc839314e

View File

@ -444,7 +444,7 @@ std::set<std::string> consistentlyFailingWells(const std::vector<StepReport>& sr
+ std::to_string(minTimeStep_) + "\n which is the minimum threshold given" + std::to_string(minTimeStep_) + "\n which is the minimum threshold given"
+ "by option --solver-min-time-step= \n"; + "by option --solver-min-time-step= \n";
if (solverVerbose_) { if (solverVerbose_) {
OpmLog::error(msg); OpmLog::problem(msg);
} }
} }