Handle the case with neither LEDA nor GMP.

This commit is contained in:
Marc Glisse 2018-10-15 20:35:23 +02:00
parent 80cb903b9e
commit 4c76bc7876
1 changed files with 7 additions and 0 deletions

View File

@ -172,6 +172,13 @@ namespace QP_from_mps_detail {
typedef CGAL::Quotient<CGAL::MP_Float> ET;
};
#if defined CGAL_USE_BOOST_MP && !defined CGAL_USE_GMP && !defined CGAL_USE_LEDA
// Last chance for int
template<>
struct IT_to_ET<int> {
typedef boost::multiprecision::cpp_int ET;
};
#endif
} // QP_from_mps_detail
template<typename QP>