Commit Graph

3 Commits

Author SHA1 Message Date
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
Laurent Saboret e5ca4de69e Fixed crash 2008-03-28 10:35:49 +00:00
Laurent Saboret d98393b710 Moved Surface_reconstruction_3 package to trunk 2008-03-21 16:13:19 +00:00