From 202d0574ea7690746ea0a882eb27d6d4c7efe731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 9 Mar 2016 09:35:28 +0100 Subject: [PATCH] use ring type in QP_solver to get a point inside a convex set --- .../include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h | 2 +- .../dual/halfspace_intersection_with_constructions_3.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h index 49b9af652065..14a91364f262 100644 --- a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h +++ b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h @@ -259,7 +259,7 @@ namespace CGAL // if a point inside is not provided find one using linear programming if (!origin) { // choose exact integral type - typedef typename internal::Exact_field_selector::Type ET; + typedef typename internal::Exact_ring_selector::Type ET; // find a point inside the intersection typedef Interior_polyhedron_3 Interior_polyhedron; diff --git a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h index 51ab1b6094c6..1c87cb764889 100644 --- a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h +++ b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h @@ -126,7 +126,7 @@ namespace CGAL p_origin = boost::get(origin); } else { // choose exact integral type - typedef typename internal::Exact_field_selector::Type ET; + typedef typename internal::Exact_ring_selector::Type ET; // find a point inside the intersection typedef Interior_polyhedron_3 Interior_polyhedron;