// Copyright (c) 2006-2008 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Michael Hemmer /*! \file NiX/Gmp/Coercion_traits.h * \brief Provides specializations of Coercion_traits for the Gmp types. */ #ifndef CGAL_GMPXX_COERCION_TRAITS_H #define CGAL_GMPXX_COERCION_TRAITS_H 1 #include #include #include // needed by GMP 4.1.4 since misses it. #include #include namespace CGAL { //mpz_class internal coercions: //self for mpz_class / mpq_class template struct Coercion_traits< ::__gmp_expr< T , U>,::__gmp_expr< T , U> >{ typedef Tag_true Are_explicit_interoperable; typedef Tag_true Are_implicit_interoperable; typedef ::__gmp_expr Type; struct Cast{ typedef Type result_type; template Type operator()(const ::__gmp_expr< T , U3>& x) const { return x; } }; }; template struct Coercion_traits< ::__gmp_expr< T , U1>,::__gmp_expr< T , U2> >{ typedef Tag_true Are_explicit_interoperable; typedef Tag_true Are_implicit_interoperable; typedef ::__gmp_expr< T , T > Type; struct Cast{ typedef Type result_type; template Type operator()(const ::__gmp_expr< T , U3>& x) const { return x; } }; }; template struct Coercion_traits< ::__gmp_expr< T1 , U1>,::__gmp_expr< T2 , U2> >{ typedef Tag_true Are_explicit_interoperable; typedef Tag_true Are_implicit_interoperable; typedef mpq_class Type; struct Cast{ typedef Type result_type; template Type operator()(const ::__gmp_expr< T , U>& x) const { return Type(x); } }; }; // gmpzq_class implicit interoperable with int template struct Coercion_traits< ::__gmp_expr< T , U >, int >{ typedef Tag_true Are_explicit_interoperable; typedef Tag_true Are_implicit_interoperable; typedef ::__gmp_expr< T , T > Type; struct Cast{ typedef Type result_type; template Type operator()(const ::__gmp_expr< T , U3>& x) const { return x; } Type operator()(int x) const { return Type(x); } }; }; // gmpz_class implicit interoperable with int template struct Coercion_traits< int , ::__gmp_expr< T , U> > :public Coercion_traits< ::__gmp_expr< T , U>, int >{}; } //namespace CGAL #endif //CGAL_GMPXX_COERCION_TRAITS_H 1 //EOF