diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-11-25 01:01:11 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-11-25 01:01:11 (GMT) |
commit | 825fbc7b9e7756ef8c2b49a85efd9abe3ebf8d95 (patch) | |
tree | 4e05d4eb8deadb6854d0effb73ad0790ed5df31d | |
parent | b204aba444bd838bd3fe27675323dce6d4123b19 (diff) |
revert to GMPQ number type kernel due to bugs like issue #481
-rw-r--r-- | src/cgal.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -48,9 +48,10 @@ typedef CGAL::Exact_predicates_exact_constructions_kernel CGAL_ExactKernel2; typedef CGAL::Polygon_2<CGAL_ExactKernel2> CGAL_Poly2; typedef CGAL::Polygon_with_holes_2<CGAL_ExactKernel2> CGAL_Poly2h; - //typedef CGAL::Cartesian<NT> CGAL_Kernel3; -typedef CGAL::Exact_predicates_exact_constructions_kernel CGAL_Kernel3; -typedef CGAL::Exact_predicates_exact_constructions_kernel::FT NT3; +typedef CGAL::Gmpq NT3; +typedef CGAL::Cartesian<NT3> CGAL_Kernel3; +//typedef CGAL::Exact_predicates_exact_constructions_kernel::FT NT3; +//typedef CGAL::Exact_predicates_exact_constructions_kernel CGAL_Kernel3; typedef CGAL::Nef_polyhedron_3<CGAL_Kernel3> CGAL_Nef_polyhedron3; typedef CGAL_Nef_polyhedron3::Aff_transformation_3 CGAL_Aff_transformation; |