Merge branch 'Triangulation_3-fix_simplex_traverser-GF' into Triangulation_3-fix_simplex_traverser-GF-CGAL-5.6

This commit is contained in:
Laurent Rineau 2023-06-20 17:31:31 +02:00
commit 53d82e5007
1 changed files with 4 additions and 1 deletions

View File

@ -731,7 +731,10 @@ public:
set_curr_simplex_to_entry(); set_curr_simplex_to_entry();
return *this; 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()); CGAL_assertion(ch_next == Cell_handle());
_curr_simplex = ch_prev; _curr_simplex = ch_prev;
return *this; return *this;