EclWriter: remove obsolete writeOutput() overload

this has been unused for any simulator for a while. the only code
which called it was the ECL output test, but this one could be easily
ported.
This commit is contained in:
Andreas Lauser 2019-02-05 17:57:07 +01:00
parent ebdf685dc6
commit e5dde0aa7e

View File

@ -132,14 +132,12 @@ void test_summary()
simulator->model().applyInitialSolution();
Opm::data::Wells dw;
bool substep = false;
Scalar totalSolverTime = 0;
Scalar nextstep = 0;
simulator->setEpisodeIndex(0);
eclWriter->writeOutput(dw, 0 * day, substep, totalSolverTime, nextstep);
eclWriter->writeOutput(substep);
simulator->setEpisodeIndex(1);
eclWriter->writeOutput(dw, 1 * day, substep, totalSolverTime, nextstep);
eclWriter->writeOutput(substep);
simulator->setEpisodeIndex(2);
eclWriter->writeOutput(dw, 2 * day, substep, totalSolverTime, nextstep);
eclWriter->writeOutput(substep);
auto res = readsum( casename );
const auto* resp = res.get();