Skip to content

Commit

Permalink
Also test Epeck_d (one variant)
Browse files Browse the repository at this point in the history
  • Loading branch information
mglisse committed Jul 1, 2024
1 parent cbbee92 commit 1aa26d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Alpha_complex/test/Incremental_delaunay_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <boost/range/adaptor/sliced.hpp>

#include <CGAL/Epick_d.h>
//#include <CGAL/Epeck_d.h>
#include <CGAL/Epeck_d.h>

#include <vector>

Expand All @@ -25,7 +25,9 @@

using Static_kernel_3 = CGAL::Epick_d< CGAL::Dimension_tag<3> >;
using Dynamic_kernel = CGAL::Epick_d< CGAL::Dynamic_dimension_tag >;
using list_of_kernel_3_variants = boost::mpl::list<Static_kernel_3, Dynamic_kernel>;
// Epick_d should be all that users need, but still test Epeck_d
using Exact_kernel = CGAL::Epeck_d< CGAL::Dynamic_dimension_tag >;
using list_of_kernel_3_variants = boost::mpl::list<Static_kernel_3, Dynamic_kernel, Exact_kernel>;
using Complex = Gudhi::Simplex_tree<>;

template<class K, class R> Complex check_contains_sub_delaunay(K const&, Complex&cplx, R const& points, int i) {
Expand Down

0 comments on commit 1aa26d8

Please sign in to comment.