From 22822de7cc1b56d15120d8568da39619c8ca077c Mon Sep 17 00:00:00 2001 From: Dmitry Anisimov Date: Fri, 6 Aug 2021 11:09:43 +0200 Subject: [PATCH] avoid using epeck in slow (when using leda) tests --- .../test/Shape_regularization/test_closed_contour_10_edges.cpp | 2 -- .../test/Shape_regularization/test_open_contour_9_edges.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/Shape_regularization/test/Shape_regularization/test_closed_contour_10_edges.cpp b/Shape_regularization/test/Shape_regularization/test_closed_contour_10_edges.cpp index a6ee8624f8e..6fc744652c2 100644 --- a/Shape_regularization/test/Shape_regularization/test_closed_contour_10_edges.cpp +++ b/Shape_regularization/test/Shape_regularization/test_closed_contour_10_edges.cpp @@ -1,7 +1,6 @@ #include "include/Saver.h" #include #include -#include #include namespace SR = CGAL::Shape_regularization; @@ -52,7 +51,6 @@ void test_closed_contour_10_edges() { int main() { test_closed_contour_10_edges< CGAL::Simple_cartesian >(); test_closed_contour_10_edges< CGAL::Exact_predicates_inexact_constructions_kernel >(); - test_closed_contour_10_edges< CGAL::Exact_predicates_exact_constructions_kernel >(); std::cout << "test_closed_contour_10_edges: SUCCESS" << std::endl; return EXIT_SUCCESS; } diff --git a/Shape_regularization/test/Shape_regularization/test_open_contour_9_edges.cpp b/Shape_regularization/test/Shape_regularization/test_open_contour_9_edges.cpp index bd9ef51f5d1..297ef1e2798 100644 --- a/Shape_regularization/test/Shape_regularization/test_open_contour_9_edges.cpp +++ b/Shape_regularization/test/Shape_regularization/test_open_contour_9_edges.cpp @@ -1,7 +1,6 @@ #include "include/Saver.h" #include #include -#include #include namespace SR = CGAL::Shape_regularization; @@ -52,7 +51,6 @@ void test_open_contour_9_edges() { int main() { test_open_contour_9_edges< CGAL::Simple_cartesian >(); test_open_contour_9_edges< CGAL::Exact_predicates_inexact_constructions_kernel >(); - test_open_contour_9_edges< CGAL::Exact_predicates_exact_constructions_kernel >(); std::cout << "test_open_contour_9_edges: SUCCESS" << std::endl; return EXIT_SUCCESS; }