drop useages of std::numeric_limits for counting well iterations.

This commit is contained in:
Liu Ming
2016-07-14 10:25:32 +08:00
parent 6af9aee20f
commit b43cbe0531
5 changed files with 7 additions and 15 deletions

View File

@@ -182,7 +182,7 @@ namespace Opm {
asImpl().assembleMassBalanceEq(state);
// -------- Well equations ----------
IterationReport iter_report = {false, false, 0, std::numeric_limits<int>::min()};
IterationReport iter_report = {false, false, 0, 0};
if ( ! wellsActive() ) {
return iter_report;
}