// Copyright (c) 2007-2010 Inria Lorraine (France). All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Number_types/include/CGAL/mpfr_coercion_traits.h $ // $Id: mpfr_coercion_traits.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author: Luis Peñaranda #ifndef CGAL_MPFR_COERCION_TRAITS_H #define CGAL_MPFR_COERCION_TRAITS_H #include #ifdef CGAL_USE_MPFR #include #include #include namespace CGAL{ CGAL_DEFINE_COERCION_TRAITS_FOR_SELF(Gmpfr) // coercion with native types CGAL_DEFINE_COERCION_TRAITS_FROM_TO(long ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(unsigned long ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(int ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(short ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(double ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(float ,Gmpfr) CGAL_DEFINE_COERCION_TRAITS_FROM_TO(long double ,Gmpfr) // coercion with gmp types CGAL_DEFINE_COERCION_TRAITS_FROM_TO(Gmpz ,Gmpfr) } #endif // CGAL_USE_MPFR #endif // CGAL_MPFR_COERCION_TRAITS_H // vim: tabstop=8: softtabstop=8: smarttab: shiftwidth=8: expandtab