mirror of https://github.com/CGAL/cgal
Convex_hull_2: Do not assert without exact predicates
This commit is contained in:
parent
7959549cff
commit
bd6c5ca9b7
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue