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;