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:
Panagiotis Cheilaris 2013-02-19 16:14:37 +01:00
parent 18532c962a
commit 88bc8d9458
1 changed files with 1 additions and 1 deletions

View File

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