the usual rebase fixup commit

This commit is contained in:
Tor Harald Sandve 2019-10-18 11:25:36 +02:00
parent 5e1ec249cd
commit 47dc94f21e

View File

@ -1341,9 +1341,11 @@ namespace Opm
updateExtraPrimaryVariables(dwells); updateExtraPrimaryVariables(dwells);
#ifndef NDEBUG
for (double v : primary_variables_) { for (double v : primary_variables_) {
assert(Opm::isfinite(v)); assert(Opm::isfinite(v));
} }
#endif
} }
@ -1797,14 +1799,9 @@ namespace Opm
OPM_DEFLOG_THROW(std::runtime_error, "Well control must be specified for well " + name() , deferred_logger); OPM_DEFLOG_THROW(std::runtime_error, "Well control must be specified for well " + name() , deferred_logger);
} }
break; break;
} // end of switch } // end of switch
#ifndef NDEBUG
for (double v : primary_variables_) {
assert(Opm::isfinite(v));
} }
#endif
} }