From 7c8ea7b9b73f0b99e75036c720f597e390774cf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20G=C3=A4rtner?= Date: Sat, 17 Mar 2007 22:08:50 +0000 Subject: [PATCH] - switched from partial_filtered to full_filtered pricing for now (partial_filtered seems to have a bug, and full_filtered is not much slower) --- Polytope_distance_d/include/CGAL/Polytope_distance_d.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Polytope_distance_d/include/CGAL/Polytope_distance_d.h b/Polytope_distance_d/include/CGAL/Polytope_distance_d.h index 304a156793e..f5968a606ba 100644 --- a/Polytope_distance_d/include/CGAL/Polytope_distance_d.h +++ b/Polytope_distance_d/include/CGAL/Polytope_distance_d.h @@ -29,8 +29,8 @@ #include #include #include -#include -#include +#include +#include CGAL_BEGIN_NAMESPACE @@ -731,11 +731,11 @@ private: template < class NT > Pricing_strategy *pricing_strategy( NT) { - return new QP_partial_filtered_pricing; + return new QP_full_filtered_pricing; } Pricing_strategy *pricing_strategy( ET) { - return new QP_partial_exact_pricing; + return new QP_full_exact_pricing; } };