Remove report_step argument from Well::handleCOMPSEGS()
This commit is contained in:
@@ -566,7 +566,7 @@ public:
|
||||
void updateWPaveRefDepth(double ref_depth);
|
||||
|
||||
bool handleWELSEGS(const DeckKeyword& keyword);
|
||||
bool handleCOMPSEGS(const DeckKeyword& keyword, std::size_t report_step, const EclipseGrid& grid, const ParseContext& parseContext, ErrorGuard& errors);
|
||||
bool handleCOMPSEGS(const DeckKeyword& keyword, const EclipseGrid& grid, const ParseContext& parseContext, ErrorGuard& errors);
|
||||
bool handleWELOPENConnections(const DeckRecord& record, std::size_t report_step, Connection::State status, bool action_mode);
|
||||
bool handleCOMPLUMP(const DeckRecord& record, std::size_t report_step);
|
||||
bool handleWPIMULT(const DeckRecord& record, std::size_t report_step);
|
||||
|
||||
@@ -236,7 +236,7 @@ namespace {
|
||||
return;
|
||||
}
|
||||
|
||||
if (well_ptr->handleCOMPSEGS(handlerContext.keyword, handlerContext.currentStep, *handlerContext.grid_ptr, parseContext, errors))
|
||||
if (well_ptr->handleCOMPSEGS(handlerContext.keyword, *handlerContext.grid_ptr, parseContext, errors))
|
||||
this->updateWell(std::move(well_ptr), handlerContext.currentStep);
|
||||
}
|
||||
|
||||
|
||||
@@ -700,7 +700,6 @@ bool Well::updateSolventFraction(double solvent_fraction_arg) {
|
||||
|
||||
|
||||
bool Well::handleCOMPSEGS(const DeckKeyword& keyword,
|
||||
std::size_t report_step,
|
||||
const EclipseGrid& grid,
|
||||
const ParseContext& parseContext,
|
||||
ErrorGuard& errors) {
|
||||
|
||||
Reference in New Issue
Block a user