Files
cgal/Intersections_3/test/Intersections_3/numrep2.h
T
Sylvain Pion f6745f19f4 Replace Homogeneous<double> by Homogeneous<MP_Float> to fix a red raw in the test-suite.
The tests triggered a degenerate case which unluckily failed for that kernel.
2007-02-28 17:41:08 +00:00

47 lines
660 B
C

#if TESTR == 1
typedef double testnt;
typedef CGAL::Cartesian<testnt> TestR;
#endif
#if TESTR == 2
typedef long testnt;
typedef CGAL::Homogeneous<testnt> TestR;
#endif
#if TESTR == 3
typedef CGAL::TestfieldC testnt;
typedef CGAL::Cartesian<testnt> TestR;
#endif
#if TESTR == 4
typedef CGAL::TestrepH testnt;
typedef CGAL::Homogeneous<testnt> TestR;
#endif
#if TESTR == 5
#include <CGAL/MP_Float.h>
//typedef double testnt; // some tests trigger a degenerate case
typedef CGAL::MP_Float testnt;
typedef CGAL::Homogeneous<testnt> TestR;
#endif
#if TESTR == 6
typedef CGAL::Checked_long testnt;
typedef CGAL::Homogeneous<testnt> TestR;
#endif