mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2868 Completion Type : Change priority order
This commit is contained in:
parent
4f4a12b636
commit
d6d894f631
@ -96,15 +96,15 @@ void RimCompletionCellIntersectionCalc::calculateCompletionTypeResult(RimEclipse
|
||||
|
||||
auto appCompletionTypes = fromCompletionData(completionsForWell.second);
|
||||
|
||||
if (std::find(appCompletionTypes.begin(), appCompletionTypes.end(), RiaDefines::FISHBONES) !=
|
||||
if (std::find(appCompletionTypes.begin(), appCompletionTypes.end(), RiaDefines::FRACTURE) !=
|
||||
appCompletionTypes.end())
|
||||
{
|
||||
appCompletionType = RiaDefines::FISHBONES;
|
||||
appCompletionType = RiaDefines::FRACTURE;
|
||||
}
|
||||
else if (std::find(appCompletionTypes.begin(), appCompletionTypes.end(), RiaDefines::FRACTURE) !=
|
||||
else if (std::find(appCompletionTypes.begin(), appCompletionTypes.end(), RiaDefines::FISHBONES) !=
|
||||
appCompletionTypes.end())
|
||||
{
|
||||
appCompletionType = RiaDefines::FRACTURE;
|
||||
appCompletionType = RiaDefines::FISHBONES;
|
||||
}
|
||||
else if (std::find(appCompletionTypes.begin(),
|
||||
appCompletionTypes.end(),
|
||||
|
Loading…
Reference in New Issue
Block a user