EclGenericVanguard: rename setParams to defineSimulationModel

setParams is a rather generic method name, be more specific
This commit is contained in:
Arne Morten Kvarving
2023-02-13 17:49:17 +01:00
parent d45a08a6cf
commit 05f92a1133
3 changed files with 26 additions and 26 deletions

View File

@@ -211,13 +211,13 @@ void Main::readDeck(const std::string& deckFilename,
void Main::setupVanguard()
{
EclGenericVanguard::setParams(this->setupTime_,
this->eclipseState_,
this->schedule_,
std::move(this->udqState_),
std::move(this->actionState_),
std::move(this->wtestState_),
this->summaryConfig_);
EclGenericVanguard::defineSimulationModel(this->setupTime_,
this->eclipseState_,
this->schedule_,
std::move(this->udqState_),
std::move(this->actionState_),
std::move(this->wtestState_),
this->summaryConfig_);
}
#if HAVE_DAMARIS