try workaround an issue on the testsuite I cannot reproduce

This commit is contained in:
Sébastien Loriot 2023-01-26 11:46:00 +01:00
parent 411560a33e
commit 0f73fdb218
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}