avoid using epeck in slow (when using leda) tests

This commit is contained in:
Dmitry Anisimov 2021-08-06 11:09:43 +02:00
parent 614f536909
commit 22822de7cc
2 changed files with 0 additions and 4 deletions

View File

@ -1,7 +1,6 @@
#include "include/Saver.h"
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Shape_regularization/regularize_contours.h>
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<double> >();
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;
}

View File

@ -1,7 +1,6 @@
#include "include/Saver.h"
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Shape_regularization/regularize_contours.h>
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<double> >();
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;
}