From b15a33634124cdf93bd1981f246273fe06ac92c4 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Wed, 10 Feb 2021 12:39:25 +0100 Subject: [PATCH] Add wellpi argument to Schedule::applyAction() --- ebos/eclproblem.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index 68ddf4719..cfc4abfff 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -1329,7 +1329,7 @@ public: } std::string msg = "The action: " + action->name() + " evaluated to true at " + ts + " wells: " + wells_string; Opm::OpmLog::info(msg); - schedule.applyAction(reportStep, std::chrono::system_clock::from_time_t(simTime), *action, actionResult); + schedule.applyAction(reportStep, std::chrono::system_clock::from_time_t(simTime), *action, actionResult, {}); actionState.add_run(*action, simTime); } else { std::string msg = "The action: " + action->name() + " evaluated to false at " + ts;