cgal/Stream_lines_2/include/CGAL
Sylvain Pion 514a17ad4f Improve the interaction of assertions and interval computations.
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__))
2008-07-06 17:05:47 +00:00
..
Euler_integrator_2.h removed unused parameters 2007-03-17 09:27:09 +00:00
Regular_grid_2.h removed unused parameters 2007-03-17 09:27:09 +00:00
Runge_kutta_integrator_2.h
Stream_lines_2.h Fix bug : check the length of the new segment inserted in the streamline 2007-11-15 16:13:32 +00:00
Triangular_field_2.h Use <cfloat> more consistently instead of <float.h>. 2008-01-18 20:19:17 +00:00
streamlines_assertions.h Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00