cgal/STL_Extension
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
..
doc_tex Remove section about functor adaptors. 2008-06-19 10:59:11 +00:00
examples/STL_Extension Removed *unmodified* auto-generated CMakeLists.txt (now created by create_internal_release) 2008-05-05 14:01:55 +00:00
include/CGAL Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00
package_info/STL_Extension Remove bind/compose/swap functor adaptors. 2008-06-19 11:03:40 +00:00
src/CGAL Remove #include <cassert> from everywhere under include/CGAL/. 2008-01-20 18:47:19 +00:00
test/STL_Extension Remove bind/compose/swap functor adaptors. 2008-06-19 11:03:40 +00:00