Changed new WellsManager constructor to take in EclipseStateConstPtr instead of SchedulePtr

This commit is contained in:
Kristian Flikka
2014-01-08 16:10:55 +01:00
parent 1f1c0ebcf3
commit 731fe7d3f4
3 changed files with 6 additions and 6 deletions

View File

@@ -237,7 +237,7 @@ namespace Opm
/// Construct wells from deck.
WellsManager::WellsManager(const Opm::SchedulePtr schedule,
WellsManager::WellsManager(const Opm::EclipseStateConstPtr eclipseState,
const size_t timeStep,
const Opm::EclipseGridParser& deck,
const UnstructuredGrid& grid,

View File

@@ -21,7 +21,7 @@
#define OPM_WELLSMANAGER_HEADER_INCLUDED
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
#include <opm/core/wells/WellCollection.hpp>
#include <opm/core/wells/WellsGroup.hpp>
@@ -61,7 +61,7 @@ namespace Opm
const double* permeability);
WellsManager(const Opm::SchedulePtr schedule,
WellsManager(const Opm::EclipseStateConstPtr eclipseState,
const size_t timeStep,
const Opm::EclipseGridParser& deck,
const UnstructuredGrid& grid,