Merge pull request #778 from qilicun/polymer-well-iters

well iterations should start from 0.
This commit is contained in:
Atgeirr Flø Rasmussen 2016-08-05 09:07:35 +02:00 committed by GitHub
commit ac11db635c

View File

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