cgal/Partition_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
..
Partition_2 Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00
Partition_is_valid_traits_2.h
Partition_traits_2.h macros must be prefixed by CGAL_ 2007-02-15 21:29:22 +00:00
is_y_monotone_2.h
partition_2.h Changed the *.C files to *_impl.h files. Also moved all non-interface include 2006-05-29 08:30:22 +00:00
partition_is_valid_2.h Changed the *.C files to *_impl.h files. Also moved all non-interface include 2006-05-29 08:30:22 +00:00
polygon_function_objects.h macros must be prefixed by CGAL_ 2007-02-15 21:29:22 +00:00