mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-15 07:03:25 -06:00
fixed: double-parsing of the deck
externalDeck = nullptr -> internalDeck was parsed. i have no idea why we have this external/internal deck in the first place.
This commit is contained in:
parent
0970867e47
commit
595f601b2c
@ -244,8 +244,7 @@ public:
|
||||
* as the simulator vanguard object is alive.
|
||||
*/
|
||||
static void setExternalDeck(Opm::Deck* deck)
|
||||
{ externalDeck_ = deck; }
|
||||
|
||||
{ externalDeck_ = deck; externalDeckSet_ = true; }
|
||||
/*!
|
||||
* \brief Set the Opm::EclipseState object which ought to be used when the simulator
|
||||
* vanguard is instantiated.
|
||||
@ -319,7 +318,7 @@ public:
|
||||
else
|
||||
errorGuard_ = externalErrorGuard_;
|
||||
|
||||
if (!externalDeck_) {
|
||||
if (!externalDeck_ && !externalDeckSet_) {
|
||||
if (myRank == 0)
|
||||
std::cout << "Reading the deck file '" << fileName << "'" << std::endl;
|
||||
|
||||
@ -609,6 +608,7 @@ private:
|
||||
static Opm::ParseContext* externalParseContext_;
|
||||
static Opm::ErrorGuard* externalErrorGuard_;
|
||||
static Opm::Deck* externalDeck_;
|
||||
static bool externalDeckSet_;
|
||||
static Opm::EclipseState* externalEclState_;
|
||||
static Opm::Schedule* externalEclSchedule_;
|
||||
static Opm::SummaryConfig* externalEclSummaryConfig_;
|
||||
@ -652,6 +652,9 @@ Opm::ErrorGuard* EclBaseVanguard<TypeTag>::externalErrorGuard_ = nullptr;
|
||||
template <class TypeTag>
|
||||
Opm::Deck* EclBaseVanguard<TypeTag>::externalDeck_ = nullptr;
|
||||
|
||||
template <class TypeTag>
|
||||
bool EclBaseVanguard<TypeTag>::externalDeckSet_ = false;
|
||||
|
||||
template <class TypeTag>
|
||||
Opm::EclipseState* EclBaseVanguard<TypeTag>::externalEclState_;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user