mirror of https://github.com/CGAL/cgal
avoid using epeck in slow (when using leda) tests
This commit is contained in:
parent
614f536909
commit
22822de7cc
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue