Add test for EPICK

This commit is contained in:
Mael Rouxel-Labbé 2022-07-05 09:42:05 +02:00
parent 1c19734490
commit 87d09b6763
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#include <CGAL/_test_fct_ch_I_2.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/convex_hull_constructive_traits_2.h>
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<CGAL::Exact_predicates_inexact_constructions_kernel> cch_EPICK;
std::cout << "Constructive EPICK:" << std::endl;
CGAL::ch__batch_test(cch_EPICK);
return EXIT_SUCCESS;
}