#3239 : Fishbones : Allow location of subs at start and end measured depth

This commit is contained in:
Magne Sjaastad 2018-08-20 14:29:29 +02:00
parent 72cfc4af6b
commit 54c6e032b5

View File

@ -560,7 +560,7 @@ void RimFishbonesMultipleSubs::computeRangesAndLocations()
for (auto md : locationsFromStartSpacingAndCount(m_rangeStart, m_rangeSubSpacing, m_rangeSubCount))
{
if (md > firstWellPathMD && md < lastWellPathMD)
if (md >= firstWellPathMD && md <= lastWellPathMD)
{
validMeasuredDepths.push_back(md);
}