Merge pull request #1122 from atgeirr/fix-type-bug-in-equil

Fix type bug in equil
This commit is contained in:
Atgeirr Flø Rasmussen
2017-11-14 14:40:47 +01:00
committed by GitHub
2 changed files with 25 additions and 26 deletions

View File

@@ -702,7 +702,7 @@ namespace Opm
const BlackoilPropertiesInterface& props_;
const int phase_;
const int cell_;
const int target_pc_;
const double target_pc_;
mutable double s_[BlackoilPhases::MaxNumPhases];
mutable double pc_[BlackoilPhases::MaxNumPhases];
};
@@ -775,7 +775,7 @@ namespace Opm
const int phase1_;
const int phase2_;
const int cell_;
const int target_pc_;
const double target_pc_;
mutable double s_[BlackoilPhases::MaxNumPhases];
mutable double pc_[BlackoilPhases::MaxNumPhases];
};