From 67925033d6a0fc80d44bbf50ebc641f8b9040e47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 5 Jul 2013 09:52:12 +0200 Subject: [PATCH] use the default for the exact kernel --- .../Segment_Delaunay_graph_2/sdg-count-sites.cpp | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp b/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp index c223fa19a88..3b66bea6585 100644 --- a/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp +++ b/Segment_Delaunay_graph_2/examples/Segment_Delaunay_graph_2/sdg-count-sites.cpp @@ -3,24 +3,16 @@ #include #include -// define the exact number type -#include -typedef CGAL::Gmpq ENT; - -// define the kernels +// define the input kernel #include - typedef CGAL::Simple_cartesian CK; -typedef CGAL::Simple_cartesian EK; // typedefs for the traits and the algorithm #include #include -typedef CGAL::Segment_Delaunay_graph_filtered_traits_2 Gt; +typedef CGAL::Segment_Delaunay_graph_filtered_traits_2< + CK,CGAL::Field_with_sqrt_tag> Gt; typedef CGAL::Segment_Delaunay_graph_2 SDG2;