// Copyright (c) 2014 // INRIA Saclay-Ile de France (France) // // This file is part of CGAL (www.cgal.org) // // $URL$ // $Id$ // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Marc Glisse #ifndef CGAL_EPECK_D_H #define CGAL_EPECK_D_H #include #include #include #include #include #include #include #include // TODO: In Kernel_23, Epeck predicates first see if they can convert their arguments to Epick types exactly, and in that case use the Epick predicates (including static filters, Mpzf, etc). namespace CGAL { #define CGAL_KA Cartesian_base_d #define CGAL_KE Cartesian_base_d::Type, Dim> template using Epeck_d_help1 = Lazy_cartesian>; #undef CGAL_KE #undef CGAL_KA #undef CGAL_BASE #define CGAL_BASE \ Kernel_d_interface< \ Cartesian_wrap< \ Epeck_d_help1, \ Epeck_d > > template struct Epeck_d : CGAL_BASE { constexpr Epeck_d(){} constexpr Epeck_d(int d):CGAL_BASE(d){} }; #undef CGAL_BASE } #include #endif