From bd6c5ca9b778e81ca92f2fa828a2ad0fad7bdf8f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 23 Dec 2022 16:18:04 +0000 Subject: [PATCH] Convex_hull_2: Do not assert without exact predicates --- Convex_hull_2/test/Convex_hull_2/ch_test_CH.cpp | 4 ---- Convex_hull_2/test/Convex_hull_2/ch_test_SC.cpp | 3 --- Convex_hull_2/test/Convex_hull_2/ch_test_SH.cpp | 3 --- Convex_hull_2/test/Convex_hull_2/ch_test_SS.cpp | 3 --- 4 files changed, 13 deletions(-) diff --git a/Convex_hull_2/test/Convex_hull_2/ch_test_CH.cpp b/Convex_hull_2/test/Convex_hull_2/ch_test_CH.cpp index 54d23ac3f68..e8d3cb35678 100644 --- a/Convex_hull_2/test/Convex_hull_2/ch_test_CH.cpp +++ b/Convex_hull_2/test/Convex_hull_2/ch_test_CH.cpp @@ -56,9 +56,5 @@ main() CGAL::ch__batch_test( cch_H_gmp ); #endif - CGAL::Convex_hull_constructive_traits_2< CGAL::Homogeneous > - cch_H_double; - std::cout << "Homogeneous: C "; - CGAL::ch__batch_test( cch_H_double ); return 0; } diff --git a/Convex_hull_2/test/Convex_hull_2/ch_test_SC.cpp b/Convex_hull_2/test/Convex_hull_2/ch_test_SC.cpp index abb4139ff1c..8afec6eb758 100644 --- a/Convex_hull_2/test/Convex_hull_2/ch_test_SC.cpp +++ b/Convex_hull_2/test/Convex_hull_2/ch_test_SC.cpp @@ -53,8 +53,5 @@ main() CGAL::ch__batch_test( ch_C_Qgmp ); #endif - CGAL::Cartesian ch_C_double; - std::cout << "Cartesian: "; - CGAL::ch__batch_test( ch_C_double ); return 0; } diff --git a/Convex_hull_2/test/Convex_hull_2/ch_test_SH.cpp b/Convex_hull_2/test/Convex_hull_2/ch_test_SH.cpp index c0ddcb07d92..954abf2fac6 100644 --- a/Convex_hull_2/test/Convex_hull_2/ch_test_SH.cpp +++ b/Convex_hull_2/test/Convex_hull_2/ch_test_SH.cpp @@ -52,8 +52,5 @@ main() CGAL::ch__batch_test( ch_H_gmp ); #endif - CGAL::Homogeneous ch_H_double; - std::cout << "Homogeneous: "; - CGAL::ch__batch_test( ch_H_double ); return 0; } diff --git a/Convex_hull_2/test/Convex_hull_2/ch_test_SS.cpp b/Convex_hull_2/test/Convex_hull_2/ch_test_SS.cpp index 3a5b9edf77e..9e73c8ce191 100644 --- a/Convex_hull_2/test/Convex_hull_2/ch_test_SS.cpp +++ b/Convex_hull_2/test/Convex_hull_2/ch_test_SS.cpp @@ -53,8 +53,5 @@ main() CGAL::ch__batch_test( ch_S_Qgmp ); #endif - CGAL::Simple_cartesian ch_S_double; - std::cout << "SimpleCartesian: "; - CGAL::ch__batch_test( ch_S_double ); return 0; }