From 87d09b6763020643937b51bb35290b8cd77ba911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 5 Jul 2022 09:42:05 +0200 Subject: [PATCH] Add test for EPICK --- .../test/Convex_hull_2/ch_test_EPICK.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Convex_hull_2/test/Convex_hull_2/ch_test_EPICK.cpp 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; +}