cgal/Partition_2/include/CGAL/Partition_2
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
..
Circulator_pair.h
Indirect_edge_compare.h
Indirect_less_xy_2.h
Indirect_not_less_yx_2.h
Iterator_list.h
Matrix.h
Partition_opt_cvx_diagonal_list.h
Partition_opt_cvx_edge.h remove g++ 4.3 warning 2007-02-11 22:44:29 +00:00
Partition_opt_cvx_vertex.h
Partition_traits_2_base.h Adds the Equal_2 predicate to the Partition_2 traits 2007-06-28 08:46:53 +00:00
Partition_vertex_map.h Remove #include <cassert> from everywhere under include/CGAL/. 2008-01-20 18:47:19 +00:00
Partitioned_polygon_2.h More removal of SUNPRO+RW's STL obsolete workarounds: 2008-01-03 15:19:39 +00:00
Point_pair_less_xy_2.h
Rotation_tree_2.h Remove workarounds and support for the BORLAND compiler. 2008-01-20 20:24:20 +00:00
Rotation_tree_2_impl.h
Rotation_tree_node_2.h Remove workarounds and support for the BORLAND compiler. 2008-01-20 20:24:20 +00:00
Segment_less_yx_2.h
Triangulation_indirect_traits_2.h
Turn_reverser.h
Vertex_visibility_graph_2.h More removal of SUNPRO+RW's STL obsolete workarounds: 2008-01-03 15:19:39 +00:00
Vertex_visibility_graph_2_impl.h More removal of SUNPRO+RW's STL obsolete workarounds: 2008-01-03 15:19:39 +00:00
is_degenerate_polygon_2.h
partition_approx_convex_2.h Fixed singular iterator issue using new safe circulator 2007-04-02 19:10:52 +00:00
partition_assertions.h Improve the interaction of assertions and interval computations. 2008-07-06 17:05:47 +00:00
partition_greene_approx_convex_2.h
partition_optimal_convex_2.h cleanup - added parentheses to pacify some come compiler 2007-04-07 09:39:45 +00:00
partition_y_monotone_2.h