flow: do not pass the schedule and summaryConfig objects anymore

they are now always created internally by the vanguard.
This commit is contained in:
Andreas Lauser
2018-11-07 12:25:49 +01:00
parent a969fd198a
commit e5fb6cf83c
15 changed files with 33 additions and 51 deletions

View File

@@ -58,12 +58,12 @@ public:
}}
namespace Opm {
void flowEbosOilWaterSetDeck(Deck &deck, EclipseState& eclState, Schedule& schedule, SummaryConfig& summaryConfig)
void flowEbosOilWaterSetDeck(Deck &deck, EclipseState& eclState)
{
typedef TTAG(EclFlowOilWaterProblem) TypeTag;
typedef GET_PROP_TYPE(TypeTag, Vanguard) Vanguard;
Vanguard::setExternalDeck(&deck, &eclState, &schedule, &summaryConfig);
Vanguard::setExternalDeck(&deck, &eclState);
}
// ----------------- Main program -----------------