diff --git a/Triangulation/examples/Triangulation/convex_hull.cpp b/Triangulation/examples/Triangulation/convex_hull.cpp index ba7a85a59d9..af042573c4d 100644 --- a/Triangulation/examples/Triangulation/convex_hull.cpp +++ b/Triangulation/examples/Triangulation/convex_hull.cpp @@ -9,7 +9,7 @@ #include #include -const int D = 10; +const int D = 4; typedef CGAL::Epick_d< CGAL::Dimension_tag > K; typedef CGAL::Delaunay_triangulation T; // The triangulation uses the default instanciation of the @@ -17,12 +17,10 @@ typedef CGAL::Delaunay_triangulation T; int main(int argc, char **argv) { - int N = 100; // number of points + int N = 200; // number of points if (argc > 1) N = atoi(argv[1]); - CGAL::Timer cost; // timer - // Generate N random points typedef CGAL::Random_points_in_cube_d Random_points_iterator; Random_points_iterator rand_it(D, 1.0, CGAL::get_default_random()); @@ -34,11 +32,8 @@ int main(int argc, char **argv) // insert the points in the triangulation, only if they are outside the // convex hull - std::cout << " Convex hull of "<