mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #3247 from akva2/cleanup_vanguard
Some small cleanups
This commit is contained in:
commit
993c973340
@ -53,13 +53,13 @@
|
||||
namespace Opm {
|
||||
|
||||
double EclGenericVanguard::externalSetupTime_ = 0.0;
|
||||
std::unique_ptr<ParseContext> EclGenericVanguard::externalParseContext_ = nullptr;
|
||||
std::unique_ptr<ErrorGuard> EclGenericVanguard::externalErrorGuard_ = nullptr;
|
||||
std::unique_ptr<ParseContext> EclGenericVanguard::externalParseContext_;
|
||||
std::unique_ptr<ErrorGuard> EclGenericVanguard::externalErrorGuard_;
|
||||
std::unique_ptr<Deck> EclGenericVanguard::externalDeck_;
|
||||
bool EclGenericVanguard::externalDeckSet_ = false;
|
||||
std::unique_ptr<EclipseState> EclGenericVanguard::externalEclState_;
|
||||
std::unique_ptr<Schedule> EclGenericVanguard::externalEclSchedule_ = nullptr;
|
||||
std::unique_ptr<SummaryConfig> EclGenericVanguard::externalEclSummaryConfig_ = nullptr;
|
||||
std::unique_ptr<Schedule> EclGenericVanguard::externalEclSchedule_;
|
||||
std::unique_ptr<SummaryConfig> EclGenericVanguard::externalEclSummaryConfig_;
|
||||
|
||||
EclGenericVanguard::EclGenericVanguard()
|
||||
: python(std::make_shared<Python>())
|
||||
|
@ -256,7 +256,7 @@ public:
|
||||
*
|
||||
* Will only have usable values for CpGrid.
|
||||
*/
|
||||
const std::vector<std::pair<std::string,bool>>& parallelWells() const
|
||||
const ParallelWellStruct& parallelWells() const
|
||||
{ return parallelWells_; }
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user