fixing the compilation due to function interface change.

outputWriter function introduced extra arguments.
This commit is contained in:
Kai Bao 2015-10-05 11:05:35 +02:00
parent 72af213835
commit d93b27cedd

View File

@ -348,7 +348,7 @@ try
// create output writer after grid is distributed, otherwise the parallel output
// won't work correctly since we need to create a mapping from the distributed to
// the global view
Opm::BlackoilOutputWriter outputWriter(grid, param, eclipseState, pu );
Opm::BlackoilOutputWriter outputWriter(grid, param, eclipseState, pu, new_props.permeability());
// Solver for Newton iterations.
std::unique_ptr<NewtonIterationBlackoilInterface> fis_solver;