mirror of https://github.com/CGAL/cgal
Things like "CGAL_assertion(denominator != 0)" produced assertion failures for no gain. So now, the assertion is triggered only if the condition is certain, using CGAL::certainly(). That is, change the following in all assertion files : ((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__)) to : (CGAL::certainly(EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__)) |
||
|---|---|---|
| .. | ||
| Euler_integrator_2.h | ||
| Regular_grid_2.h | ||
| Runge_kutta_integrator_2.h | ||
| Stream_lines_2.h | ||
| Triangular_field_2.h | ||
| streamlines_assertions.h | ||