New GMPXX_arithmetic_kernel.

This commit is contained in:
Marc Glisse
2016-10-22 21:48:27 +02:00
parent 593901efcf
commit 589139cf2c
3 changed files with 64 additions and 0 deletions
@@ -0,0 +1,18 @@
#include <iostream>
#include <CGAL/basic.h>
#include <CGAL/GMPXX_arithmetic_kernel.h>
#ifdef CGAL_USE_GMPXX
#include <CGAL/Test/_test_arithmetic_kernel.h>
int main() {
std::cout << "TEST GMPXX_arithmetic_kernel" << std::endl;
typedef CGAL::GMPXX_arithmetic_kernel AK;
CGAL::test_arithmetic_kernel<AK>();
return 0;
}
#else
int main() { return 0; }
#endif