From 301f7342cee952b00d67a41b6e4c352e9fa1e4a1 Mon Sep 17 00:00:00 2001 From: Panagiotis Cheilaris Date: Sat, 29 Sep 2012 11:32:23 +0200 Subject: [PATCH] fixed indentation by removing tabs --- .../Finite_edge_interior_conflict_C2.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h b/include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h index f661bfe124a..2d2b61ce2a0 100644 --- a/include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h +++ b/include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h @@ -878,22 +878,26 @@ public: (not same_points(q, p.target_site()))) ) ; - //sandeep: if t is segment and it not intersects the wedge + //sandeep: if t is segment and it not intersects the wedge //as defined by s and p in the basic predicate //intersects_segment_interior_inf_wedge_sp - // then return false - if (t.is_segment()) { + // then return false + if (t.is_segment()) { bool result; if(p.is_point()) { result = intersects_segment_interior_inf_wedge_sp(q,p,t); - } else { + } else { // p is segment result = intersects_segment_interior_inf_wedge_sp(p,q,t); } if (result == false) { + std::cout << "debug finite-edge-int-cf tocheck (p,q,r,t,sgn)= (" + << p << ") (" << q << ") (" << r << " (r ignored)) (" + << t << ") " + << sgn << " retval= " << false << std::endl; return false; } - } + } // philaris: tocheck std::cout << "debug finite-edge-int-cf tocheck (p,q,r,t,sgn)= (" << p << ") (" << q << ") (" << r << " (r ignored)) ("