From ffce5f1ad2cc7307b288e96cd19458ede2ff0657 Mon Sep 17 00:00:00 2001 From: Eric Berberich Date: Mon, 28 Jan 2008 14:19:31 +0000 Subject: [PATCH] added cout to equal --- .../Curved_kernel_via_analysis_2_functors.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h b/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h index cf18be915ba..270e79f0dc7 100755 --- a/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h +++ b/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h @@ -1381,9 +1381,13 @@ public: * \return (true) if the two point are the same; (false) otherwise. */ result_type operator()(const Point_2& p1, const Point_2& p2) const { - return (Curved_kernel_via_analysis_2::instance(). - compare_xy_2_object()(p1, p2) == - CGAL::EQUAL); + CERR("\nequal; p1: " << p1 << "; p2: " << p2 << "\n"); + + result_type res = (Curved_kernel_via_analysis_2::instance(). + compare_xy_2_object()(p1, p2) == + CGAL::EQUAL); + CERR("\nres = " << res << "\n"); + return res; } /*!