mirror of https://github.com/CGAL/cgal
change of n_inf assertion to support Linf case
In Linf, there can be many Linf-parabolae contained in the region of the interior of a non-axis parallel segment.
This commit is contained in:
parent
18532c962a
commit
88bc8d9458
|
|
@ -502,7 +502,7 @@ find_faces_to_split(const Vertex_handle& v, const Site_2& t) const
|
|||
if ( is_infinite(fc) ) { n_inf++; }
|
||||
fc++;
|
||||
} while ( fc != fc_start );
|
||||
CGAL_assertion( n_inf == 0 || n_inf == 2 || n_inf == 4 );
|
||||
CGAL_assertion( n_inf % 2 == 0 );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue