// Copyright (c) 2017 Inria. // All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Arithmetic_kernel/include/CGAL/BOOST_MP_arithmetic_kernel.h $ // $Id: BOOST_MP_arithmetic_kernel.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author: Marc Glisse #ifndef CGAL_GMPXX_ARITHMETIC_KERNEL_H #define CGAL_GMPXX_ARITHMETIC_KERNEL_H #include #include #include #ifdef CGAL_USE_BOOST_MP //Currently already included in boost_mp.h //#include //#ifdef CGAL_USE_GMP //#include //#endif // FIXME: the could be several kernels based on Boost.Multiprecision. namespace CGAL { /** \ingroup CGAL_Arithmetic_kernel * \brief The Boost.Multiprecision set of exact number types */ struct BOOST_cpp_arithmetic_kernel : internal::Arithmetic_kernel_base { typedef boost::multiprecision::cpp_int Integer; typedef boost::multiprecision::cpp_rational Rational; }; #ifdef CGAL_USE_GMP struct BOOST_gmp_arithmetic_kernel : internal::Arithmetic_kernel_base { typedef boost::multiprecision::mpz_int Integer; typedef boost::multiprecision::mpq_rational Rational; }; #endif template struct Get_arithmetic_kernel > : Get_arithmetic_kernel::result_type> {}; template <> struct Get_arithmetic_kernel { typedef BOOST_cpp_arithmetic_kernel Arithmetic_kernel; }; template <> struct Get_arithmetic_kernel { typedef BOOST_cpp_arithmetic_kernel Arithmetic_kernel; }; #ifdef CGAL_USE_GMP template <> struct Get_arithmetic_kernel { typedef BOOST_gmp_arithmetic_kernel Arithmetic_kernel; }; template <> struct Get_arithmetic_kernel { typedef BOOST_gmp_arithmetic_kernel Arithmetic_kernel; }; #endif } //namespace CGAL #endif // CGAL_USE_BOOST_MP #endif