diff --git a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp index 95109e50453..ca1d6f5746b 100644 --- a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp +++ b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp @@ -2,7 +2,7 @@ // as input type and some internal EXACT floating point type #include #include -#include +#include #include #include @@ -15,7 +15,7 @@ typedef CGAL::MP_Float ET; #endif // use an EXACT kernel... -typedef CGAL::Simple_cartesian K; +typedef CGAL::Homogeneous K; typedef K::Point_3 Point; // ...and the traits class based on the exact kernel typedef CGAL::Polytope_distance_d_traits_3 Traits; diff --git a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp index 95ee98de145..a6ab43261bb 100644 --- a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp +++ b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp @@ -4,7 +4,7 @@ // internal computations #include #include -#include +#include #include #include @@ -17,7 +17,7 @@ typedef CGAL::MP_Float ET; #endif // use an inexact kernel... -typedef CGAL::Simple_cartesian K; +typedef CGAL::Homogeneous K; typedef K::Point_3 Point; // ... and the EXACT traits class based on the inexcat kernel typedef CGAL::Polytope_distance_d_traits_3 Traits;