From 4a7f9269dc55aacb33d7c39a40c35c0a9460014d Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 20 Jun 2023 17:31:13 +0200 Subject: [PATCH] another bug fix?! --- .../include/CGAL/Triangulation_segment_traverser_3.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h b/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h index d30395ef041..a43ef0d42fd 100644 --- a/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h @@ -731,7 +731,10 @@ public: set_curr_simplex_to_entry(); return *this; } - if(lt_prev == Locate_type::CELL) { + if(lt_prev == Locate_type::CELL || + lt_prev == Locate_type::OUTSIDE_CONVEX_HULL || + lt_prev == Locate_type::OUTSIDE_AFFINE_HULL) + { CGAL_assertion(ch_next == Cell_handle()); _curr_simplex = ch_prev; return *this;