Add recursive check to node equality operator

This commit is contained in:
Jackson Campolattaro 2020-06-17 15:36:05 -04:00
parent 73c0db153c
commit cdecee6279
1 changed files with 3 additions and 1 deletions

View File

@ -158,7 +158,9 @@ namespace CGAL {
// Check all the children
for (int i = 0; i < 8; ++i) {
// TODO
// If any child cell is different, they're not the same
if (!((*m_children)[i] == rhs[i]))
return false;
}
}