From 4ed56a8ba6f8fdde5747fadaf24b0826bca53835 Mon Sep 17 00:00:00 2001 From: Tias Maiti Date: Fri, 7 Aug 2015 20:52:57 +0000 Subject: [PATCH] removed debugging print statements --- processing/pre/geom_fromVoronoiTessellation.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/processing/pre/geom_fromVoronoiTessellation.py b/processing/pre/geom_fromVoronoiTessellation.py index 424495b5c..60592e17c 100755 --- a/processing/pre/geom_fromVoronoiTessellation.py +++ b/processing/pre/geom_fromVoronoiTessellation.py @@ -88,12 +88,10 @@ def laguerreTessellation(undeformed, coords, weights, grains, nonperiodic = Fals # Evaluate function result = pool.map_async(findClosestSeed, arguments) -# closestSeeds = np.array(pool.map_async(findClosestSeed, arguments),'i') pool.close() pool.join() closestSeeds = np.array(result.get()).flatten() - print 'shape of result',closestSeeds.shape return grains[closestSeeds%N]