mirror of https://github.com/CGAL/cgal
try workaround an issue on the testsuite I cannot reproduce
This commit is contained in:
parent
411560a33e
commit
0f73fdb218
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue