initial IterationReport.

This commit is contained in:
Liu Ming 2016-06-28 15:48:20 +08:00
parent 4000582952
commit ad01934670
3 changed files with 3 additions and 3 deletions

View File

@ -775,7 +775,7 @@ namespace detail {
asImpl().assembleMassBalanceEq(state);
// -------- Well equations ----------
IterationReport iter_report;
IterationReport iter_report = {false, false, 0, 0};
if ( ! wellsActive() ) {
return iter_report;
}

View File

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

View File

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