mirror of https://github.com/CGAL/cgal
18 lines
298 B
C++
18 lines
298 B
C++
#include <iostream>
|
|
|
|
#include <CGAL/LEDA_arithmetic_kernel.h>
|
|
|
|
#ifdef CGAL_HAS_LEDA_ARITHMETIC_KERNEL
|
|
|
|
#include <CGAL/Test/_test_arithmetic_kernel.h>
|
|
|
|
int main() {
|
|
typedef CGAL::LEDA_arithmetic_kernel AK;
|
|
CGAL::test_arithmetic_kernel<AK>();
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
int main() { return 0; }
|
|
#endif
|