From fc1e433a482f87adb39407a1d7350da11e558fee Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Sat, 27 Dec 2014 18:35:56 +0000 Subject: [PATCH] Removing @profile decorator from previous commit. --- voronoi_utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voronoi_utility.py b/voronoi_utility.py index 34ec8b1..72f78c5 100644 --- a/voronoi_utility.py +++ b/voronoi_utility.py @@ -387,7 +387,7 @@ def delaunay_triangulation_spherical_surface(self): array_points_vertices_Delaunay_triangulation = produce_triangle_vertex_coordinate_array_Delaunay_sphere(self.hull_instance) return array_points_vertices_Delaunay_triangulation - @profile + #@profile def voronoi_region_vertices_spherical_surface(self): '''Returns a dictionary with the sorted (non-intersecting) polygon vertices for the Voronoi regions associated with each generator (original data point) index. A dictionary entry would be structured as follows: `{generator_index : array_polygon_vertices, ...}`. Now modifying the function to return a numpy array of indices instead -- to improve performance, reduce memory usage, etc.''' #generate the array of Voronoi vertices: