From 5eac4b8bdcd2214ea19446c23c61a3064d6e3f07 Mon Sep 17 00:00:00 2001 From: Clement Jamin Date: Tue, 24 May 2016 14:56:59 +0200 Subject: [PATCH] Test both static and dynamic kernels --- Triangulation/test/Triangulation/test_delaunay.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Triangulation/test/Triangulation/test_delaunay.cpp b/Triangulation/test/Triangulation/test_delaunay.cpp index 751b42133b3..bd2bb695ed3 100644 --- a/Triangulation/test/Triangulation/test_delaunay.cpp +++ b/Triangulation/test/Triangulation/test_delaunay.cpp @@ -113,11 +113,13 @@ void test(const int d, const string & type, const int N) template< int D > void go(const int N) { - //typedef CGAL::Epick_d FK; typedef CGAL::Epick_d > FK; typedef CGAL::Delaunay_triangulation Triangulation; - //test(D, "dynamic", N); test(D, "static", N); + + typedef CGAL::Epick_d FK_dyn; + typedef CGAL::Delaunay_triangulation Triangulation_dyn; + test(D, "dynamic", N); } int main(int argc, char **argv)