From a84a5815d614925d029a5656045d690b6ab61280 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Tue, 10 Dec 2024 21:45:39 +0100 Subject: [PATCH] Don't check for BOPAlgo_AlertAcquiredSelfIntersection at all for now --- src/ifcgeom/kernels/opencascade/boolean_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/kernels/opencascade/boolean_utils.cpp b/src/ifcgeom/kernels/opencascade/boolean_utils.cpp index 63783cd9fb..07beec8a14 100644 --- a/src/ifcgeom/kernels/opencascade/boolean_utils.cpp +++ b/src/ifcgeom/kernels/opencascade/boolean_utils.cpp @@ -1155,7 +1155,7 @@ bool IfcGeom::util::boolean_operation(const boolean_settings& settings, const To builder->Build(); } if (builder->IsDone()) { - if (allow_retry && builder->DSFiller()->HasWarning(STANDARD_TYPE(BOPAlgo_AlertAcquiredSelfIntersection))) { + if (false && builder->DSFiller()->HasWarning(STANDARD_TYPE(BOPAlgo_AlertAcquiredSelfIntersection))) { Logger::Notice("Builder reports self-intersection in output"); success = false;