From 42e210f739020003ffcf322dde45425e9871b6f1 Mon Sep 17 00:00:00 2001 From: Olivier Devillers Date: Fri, 14 Oct 2011 08:32:42 +0000 Subject: [PATCH] spatial sort include a random shuffle --- Triangulation/include/CGAL/Triangulation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Triangulation/include/CGAL/Triangulation.h b/Triangulation/include/CGAL/Triangulation.h index e280a87aede..845ede09c47 100644 --- a/Triangulation/include/CGAL/Triangulation.h +++ b/Triangulation/include/CGAL/Triangulation.h @@ -521,7 +521,6 @@ public: { size_type n = number_of_vertices(); std::vector points(start, end); - std::random_shuffle(points.begin(), points.end()); spatial_sort(points.begin(), points.end(), geom_traits()); Full_cell_handle hint = Full_cell_handle(); typename std::vector::const_iterator s = points.begin();