mirror of https://github.com/CGAL/cgal
Move "go_further()" check up
So it doesn't purge zombies or print gate info that would not be refined
This commit is contained in:
parent
67e1b32c21
commit
c19799aa59
|
|
@ -1327,6 +1327,9 @@ private:
|
||||||
// Explore all finite cells that are reachable from one of the initial outside cells.
|
// Explore all finite cells that are reachable from one of the initial outside cells.
|
||||||
while(!m_queue.empty())
|
while(!m_queue.empty())
|
||||||
{
|
{
|
||||||
|
if(!visitor.go_further(*this))
|
||||||
|
return false;
|
||||||
|
|
||||||
#ifdef CGAL_AW3_DEBUG_QUEUE_PP
|
#ifdef CGAL_AW3_DEBUG_QUEUE_PP
|
||||||
check_queue_sanity();
|
check_queue_sanity();
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -1379,9 +1382,6 @@ private:
|
||||||
face_out.close();
|
face_out.close();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if(!visitor.go_further(*this))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
visitor.before_facet_treatment(*this, gate);
|
visitor.before_facet_treatment(*this, gate);
|
||||||
|
|
||||||
m_queue.pop();
|
m_queue.pop();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue