Convex_hull_2: Do not assert without exact predicates

This commit is contained in:
Andreas Fabri 2022-12-23 16:18:04 +00:00
parent 7959549cff
commit bd6c5ca9b7
4 changed files with 0 additions and 13 deletions

View File

@ -56,9 +56,5 @@ main()
CGAL::ch__batch_test( cch_H_gmp ); CGAL::ch__batch_test( cch_H_gmp );
#endif #endif
CGAL::Convex_hull_constructive_traits_2< CGAL::Homogeneous<double> >
cch_H_double;
std::cout << "Homogeneous<double>: C ";
CGAL::ch__batch_test( cch_H_double );
return 0; return 0;
} }

View File

@ -53,8 +53,5 @@ main()
CGAL::ch__batch_test( ch_C_Qgmp ); CGAL::ch__batch_test( ch_C_Qgmp );
#endif #endif
CGAL::Cartesian<double> ch_C_double;
std::cout << "Cartesian<double>: ";
CGAL::ch__batch_test( ch_C_double );
return 0; return 0;
} }

View File

@ -52,8 +52,5 @@ main()
CGAL::ch__batch_test( ch_H_gmp ); CGAL::ch__batch_test( ch_H_gmp );
#endif #endif
CGAL::Homogeneous<double> ch_H_double;
std::cout << "Homogeneous<double>: ";
CGAL::ch__batch_test( ch_H_double );
return 0; return 0;
} }

View File

@ -53,8 +53,5 @@ main()
CGAL::ch__batch_test( ch_S_Qgmp ); CGAL::ch__batch_test( ch_S_Qgmp );
#endif #endif
CGAL::Simple_cartesian<double> ch_S_double;
std::cout << "SimpleCartesian<double>: ";
CGAL::ch__batch_test( ch_S_double );
return 0; return 0;
} }