mirror of https://github.com/CGAL/cgal
use GMP kernel
This commit is contained in:
parent
0411b3b084
commit
69292d72a7
|
|
@ -4,24 +4,12 @@
|
|||
#include <CGAL/Test/_test_bigfloat_interval_traits.h>
|
||||
|
||||
int main(){
|
||||
|
||||
#ifdef CGAL_HAS_CORE_ARITHMETIC_KERNEL
|
||||
{
|
||||
std::cerr << " CORE test .." << std::flush;
|
||||
typedef CGAL::CORE_arithmetic_kernel AK;
|
||||
CGAL::test_bigfloat_interval_traits<AK::Bigfloat_interval>();
|
||||
std::cerr << " done " << std::endl;
|
||||
}
|
||||
#else
|
||||
std::cerr << " CORE test .. skipped " << std::endl;
|
||||
#endif // CGAL_HAS_CORE_ARITHMETIC_KERNEL
|
||||
|
||||
|
||||
#ifdef CGAL_HAS_GMP_ARITHMETIC_KERNEL
|
||||
{
|
||||
std::cerr << " GMP test .." << std::flush;
|
||||
typedef CGAL::GMP_arithmetic_kernel AK;
|
||||
// CGAL::test_bigfloat_interval_traits<AK::Bigfloat_interval>();
|
||||
CGAL::test_bigfloat_interval_traits<AK::Bigfloat_interval>();
|
||||
std::cerr << " done " << std::endl;
|
||||
}
|
||||
#else
|
||||
|
|
@ -40,6 +28,18 @@ int main(){
|
|||
std::cerr << " LEDA test .. skipped " << std::endl;
|
||||
#endif // CGAL_HAS_LEDA_ARITHMETIC_KERNEL
|
||||
|
||||
|
||||
#ifdef CGAL_HAS_CORE_ARITHMETIC_KERNEL
|
||||
{
|
||||
std::cerr << " CORE test .." << std::flush;
|
||||
typedef CGAL::CORE_arithmetic_kernel AK;
|
||||
CGAL::test_bigfloat_interval_traits<AK::Bigfloat_interval>();
|
||||
std::cerr << " done " << std::endl;
|
||||
}
|
||||
#else
|
||||
std::cerr << " CORE test .. skipped " << std::endl;
|
||||
#endif // CGAL_HAS_CORE_ARITHMETIC_KERNEL
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue