cgal/Surface_mesh_parameterization
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 generate_reference_documentation 1.0.2 requires to document the concepts refinement by inheritance instead of "@heading Refines" 2008-04-04 16:38:18 +00:00
doc_tex Automatic documentation by generate_reference_documentation 1.0.2 2008-04-04 16:40:07 +00:00
examples/Surface_mesh_parameterization This package is now compatible with the default makefile and cgal_test files: 2008-06-06 13:59:35 +00:00
include/CGAL Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00
package_info/Surface_mesh_parameterization The files "changes.txt", "description.txt", "long_description.txt" and "maintainer" 2007-12-02 15:06:42 +00:00
test/Surface_mesh_parameterization This package is now compatible with the default makefile and cgal_test files: 2008-06-06 13:59:35 +00:00
dont_submit