#include #include #include #ifdef CGAL_HAS_GMP_ARITHMETIC_KERNEL #include int main() { std::cout << "TEST GMP_arithmetic_kernel" << std::endl; typedef CGAL::GMP_arithmetic_kernel AK; CGAL::test_arithmetic_kernel(); return 0; } #else int main() { return 0; } #endif