From 44eeb8a631bb52210b998b50318d51a4e48e4b53 Mon Sep 17 00:00:00 2001 From: Eric Berberich Date: Fri, 25 Apr 2008 10:32:57 +0000 Subject: [PATCH] have to use exact x for determining the y-coordinate --- .../include/CGAL/Algebraic_curve_kernel_2/Xy_coordinate_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algebraic_kernel_d/include/CGAL/Algebraic_curve_kernel_2/Xy_coordinate_2.h b/Algebraic_kernel_d/include/CGAL/Algebraic_curve_kernel_2/Xy_coordinate_2.h index eecf670c0ad..df5fead9eba 100755 --- a/Algebraic_kernel_d/include/CGAL/Algebraic_curve_kernel_2/Xy_coordinate_2.h +++ b/Algebraic_kernel_d/include/CGAL/Algebraic_curve_kernel_2/Xy_coordinate_2.h @@ -269,7 +269,7 @@ public: // the resultant of f and f_y with respect to x as polynomial bool point_is_certainly_critical = false; typename Curve_analysis_2::Status_line_1 line = - curve().status_line_for_x(x()); + curve().status_line_at_exact_x(x()); typename Y_root_map::iterator yit = y_root_map.find(line);