From 9e9a8639ec24d40bf2b8c41be04263fde528c5b6 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 4 Aug 2014 17:07:49 +0200 Subject: [PATCH] ECL problem: write the initial solution again this regressed after time step index of the initial solution was changed from 0 (actually, this was also 0 for the first time step...) to -1 in b30af664. --- tests/problems/eclproblem.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/problems/eclproblem.hh b/tests/problems/eclproblem.hh index 4090908f4..c5a57c5e8 100644 --- a/tests/problems/eclproblem.hh +++ b/tests/problems/eclproblem.hh @@ -312,7 +312,7 @@ public: */ bool shouldWriteOutput() { - if (this->simulator().timeStepIndex() == 0) + if (this->simulator().timeStepIndex() < 0) // always write the initial solution return true;