From b9572e8c68ae3847455a5a3ada682f0ea12afd75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Thu, 20 Jun 2013 22:47:08 +0200 Subject: [PATCH] remove commented lines --- skimage/graph/tests/test_mcp.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/skimage/graph/tests/test_mcp.py b/skimage/graph/tests/test_mcp.py index 8712c0e9..a1021380 100644 --- a/skimage/graph/tests/test_mcp.py +++ b/skimage/graph/tests/test_mcp.py @@ -3,22 +3,12 @@ from numpy.testing import (assert_array_equal, assert_almost_equal, ) - import skimage.graph.mcp as mcp a = np.ones((8, 8), dtype=np.float32) a[1:-1, 1] = 0 a[1, 1:-1] = 0 -## array([[ 1., 1., 1., 1., 1., 1., 1., 1.], -## [ 1., 0., 0., 0., 0., 0., 0., 1.], -## [ 1., 0., 1., 1., 1., 1., 1., 1.], -## [ 1., 0., 1., 1., 1., 1., 1., 1.], -## [ 1., 0., 1., 1., 1., 1., 1., 1.], -## [ 1., 0., 1., 1., 1., 1., 1., 1.], -## [ 1., 0., 1., 1., 1., 1., 1., 1.], -## [ 1., 1., 1., 1., 1., 1., 1., 1.]], dtype=float32) - def test_basic(): m = mcp.MCP(a, fully_connected=True)