From 1b01f9c9671eb8b1761b39a9321b296ea3fb7a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20G=C3=A4rtner?= Date: Thu, 19 Apr 2007 14:36:51 +0000 Subject: [PATCH] - switched to new pricing strategy names - changed default back from full_filtrered to partial_filtered --- Polytope_distance_d/include/CGAL/Polytope_distance_d.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polytope_distance_d/include/CGAL/Polytope_distance_d.h b/Polytope_distance_d/include/CGAL/Polytope_distance_d.h index b2145b63eca..aa8e2695c3d 100644 --- a/Polytope_distance_d/include/CGAL/Polytope_distance_d.h +++ b/Polytope_distance_d/include/CGAL/Polytope_distance_d.h @@ -730,11 +730,11 @@ private: template < class NT > Quadratic_program_pricing_strategy pricing_strategy( NT) { - return QP_FULL_FILTERED; + return QP_PARTIAL_FILTERED_DANTZIG; } Quadratic_program_pricing_strategy pricing_strategy( ET) { - return QP_FULL_EXACT; + return QP_PARTIAL_DANTZIG; } };