From 0f73fdb218cf3c05c80248f0c11c4238494ad536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 26 Jan 2023 11:46:00 +0100 Subject: [PATCH] try workaround an issue on the testsuite I cannot reproduce --- .../Region_growing/Point_set/Least_squares_sphere_fit_region.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_region.h b/Shape_detection/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_region.h index 1625754dd50..e9432597358 100644 --- a/Shape_detection/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_region.h +++ b/Shape_detection/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_region.h @@ -264,7 +264,7 @@ namespace Point_set { } // If radius is out of bound, nothing fits, early ending. - if (m_radius < m_min_radius || m_radius > m_max_radius) { + if (m_radius <= m_min_radius || m_radius > m_max_radius) { return false; }