mirror of https://github.com/CGAL/cgal
boost by default for exact integer
This commit is contained in:
parent
01ff86fa84
commit
5460a9aa3a
|
|
@ -50,11 +50,10 @@ typedef unspecified_type Exact_integer;
|
|||
|
||||
#else // not DOXYGEN_RUNNING
|
||||
|
||||
#if ( (defined(CGAL_TEST_SUITE) && CGAL_VERSION_NR == 1050500900) || defined(CGAL_FORCE_USE_BOOST_MP))\
|
||||
&& BOOST_VERSION > 107800 && defined(CGAL_USE_BOOST_MP)
|
||||
#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP)
|
||||
// use boost-mp by default in the testsuite until 5.5-beta is out
|
||||
typedef BOOST_cpp_arithmetic_kernel::Integer Exact_integer;
|
||||
#else // BOOST_VERSION > 107800
|
||||
#else // BOOST_VERSION > 107900
|
||||
#ifdef CGAL_USE_GMPXX
|
||||
typedef mpz_class Exact_integer;
|
||||
#elif defined(CGAL_USE_GMP)
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ struct Exact_field_selector
|
|||
#else
|
||||
{ typedef Quotient<MP_Float> Type; };
|
||||
#endif
|
||||
#endif // BOOST_VERSION > 107800
|
||||
#endif // BOOST_VERSION > 107900
|
||||
|
||||
// By default, a field is a safe choice of ring.
|
||||
template < typename T >
|
||||
|
|
|
|||
Loading…
Reference in New Issue