From 713ccf09be2d9d75700beec0175c0b52f24556eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Hagen?= Date: Thu, 17 Sep 2015 10:15:46 +0200 Subject: [PATCH] (#482) Got rid of cause of crash Removed an assertion in the case where one would extract a well path between two cells. --- .../ReservoirDataModel/RigWellLogExtractionTools.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ApplicationCode/ReservoirDataModel/RigWellLogExtractionTools.h b/ApplicationCode/ReservoirDataModel/RigWellLogExtractionTools.h index d436431f8f..db8e08f9f7 100644 --- a/ApplicationCode/ReservoirDataModel/RigWellLogExtractionTools.h +++ b/ApplicationCode/ReservoirDataModel/RigWellLogExtractionTools.h @@ -108,9 +108,8 @@ struct WellPathDepthPoint { if (isEnteringCell == other.isEnteringCell) { - CVF_ASSERT(false); // For now - - return false; // Completely equal + // Completely equal, probably hitting between two cells + return false; } if(!isEnteringCell) // Leaving this cell