use GMP kernel

This commit is contained in:
Michael Hemmer 2010-02-12 17:39:46 +00:00
parent 0411b3b084
commit 69292d72a7
1 changed files with 13 additions and 13 deletions

View File

@ -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;
}