diff --git a/Convex_hull_2/test/Convex_hull_2/ch_test_EPICK.cpp b/Convex_hull_2/test/Convex_hull_2/ch_test_EPICK.cpp new file mode 100644 index 00000000000..71245612e34 --- /dev/null +++ b/Convex_hull_2/test/Convex_hull_2/ch_test_EPICK.cpp @@ -0,0 +1,18 @@ +#include + +#include + +#include + +int main() +{ + CGAL::Exact_predicates_inexact_constructions_kernel ch_EPICK; + std::cout << "EPICK:" << std::endl; + CGAL::ch__batch_test(ch_EPICK); + + CGAL::Convex_hull_constructive_traits_2 cch_EPICK; + std::cout << "Constructive EPICK:" << std::endl; + CGAL::ch__batch_test(cch_EPICK); + + return EXIT_SUCCESS; +}