From 555c3b60bb33150adb34f4a7b792bea2fcc60e9b Mon Sep 17 00:00:00 2001 From: Panagiotis Cheilaris Date: Sun, 2 Jun 2013 17:54:27 +0200 Subject: [PATCH] show debug message for inserting endpoints Signed-off-by: Panagiotis Cheilaris --- .../Segment_Delaunay_graph_Linf_2_impl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h index 8ccbb24b75f..5f2ecfb5e71 100644 --- a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h +++ b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h @@ -894,8 +894,12 @@ insert_segment(const Storage_site_2& ss, const Site_2& t, Vertex_handle vnear) convert_info(ss_trg, ss, false); Vertex_handle v0 = insert_point( ss_src, t.source(), vnear ); + CGAL_SDG_DEBUG(std::cout << "debug inserted source point " << t.source() + << std::endl; ); CGAL_assertion( is_valid() ); Vertex_handle v1 = insert_point( ss_trg, t.target(), v0 ); + CGAL_SDG_DEBUG(std::cout << "debug inserted target point " << t.target() + << std::endl; ); CGAL_assertion( is_valid() ); if ( number_of_vertices() == 2 ) {