FlowMainEbos: fix the output of the initial condition

I probably did not see this warning when testing f7910af7d7 because
I'm currently flooded by deprecation warnings stemming from
Eigen. (these warnings are caused because I use Ubuntu 16.04 and an
old version of Eigen is cloned by the build system that is not system
installed.)
This commit is contained in:
Andreas Lauser 2016-12-15 09:57:53 +01:00
parent 381c1cfbd6
commit 2761df3791

View File

@ -555,12 +555,8 @@ namespace Opm
{ {
const EclipseGrid& inputGrid = eclState().getInputGrid(); const EclipseGrid& inputGrid = eclState().getInputGrid();
eclipse_writer_.reset(new EclipseWriter(eclState(), UgGridHelpers::createEclipseGrid( grid , inputGrid ))); eclipse_writer_.reset(new EclipseWriter(eclState(), UgGridHelpers::createEclipseGrid( grid , inputGrid )));
#warning TODO
#if 0
eclipse_writer_->writeInitial(geoprops_->simProps(grid), eclipse_writer_->writeInitial(geoprops_->simProps(grid),
geoprops_->nonCartesianConnections()); geoprops_->nonCartesianConnections());
#endif
} }
} }