diff --git a/opm/autodiff/SimulatorFullyImplicitBlackoil_impl.hpp b/opm/autodiff/SimulatorFullyImplicitBlackoil_impl.hpp index a2740789b..ce5d4eb35 100644 --- a/opm/autodiff/SimulatorFullyImplicitBlackoil_impl.hpp +++ b/opm/autodiff/SimulatorFullyImplicitBlackoil_impl.hpp @@ -24,7 +24,8 @@ #include #include -#include +#include +#include #include #include #include @@ -231,7 +232,7 @@ namespace Opm std::string tstep_filename = output_writer_.outputDirectory() + "/step_timing.txt"; std::ofstream tstep_os(tstep_filename.c_str()); - typename FullyImplicitBlackoilSolver::SolverParameter solverParam( param_ ); + typename FullyImplicitSolver::SolverParameter solverParam( param_ ); // adaptive time stepping std::unique_ptr< AdaptiveTimeStepping > adaptiveTimeStepping; @@ -291,7 +292,7 @@ namespace Opm // Run a multiple steps of the solver depending on the time step control. solver_timer.start(); - FullyImplicitBlackoilSolver solver(solverParam, grid_, props_, geo_, rock_comp_props_, wells, solver_, has_disgas_, has_vapoil_, terminal_output_); + FullyImplicitSolver solver(solverParam, grid_, props_, geo_, rock_comp_props_, wells, solver_, has_disgas_, has_vapoil_, terminal_output_); if (!threshold_pressures_by_face_.empty()) { solver.setThresholdPressures(threshold_pressures_by_face_); }