cgal/Optimisation_basic
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/Optimisation_ref
include/CGAL Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00
package
package_info/Optimisation_basic The files "changes.txt", "description.txt", "long_description.txt" and "maintainer" 2007-12-02 15:06:42 +00:00
web
Makefile.settings
dont_submit