update-mcp: add new MCP classes to skimage.graph namespace

This commit is contained in:
Almar Klein
2013-12-14 23:58:45 +01:00
parent 2ebeee2df4
commit fdd880aa7f
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
from .spath import shortest_path
from .mcp import MCP, MCP_Geometric, route_through_array
from .mcp import MCP, MCP_Geometric, MCP_Connect, MCP_Flexible, route_through_array
__all__ = ['shortest_path',
'MCP',
'MCP_Geometric',
'MCP_Connect',
'MCP_Flexible',
'route_through_array']
+1 -1
View File
@@ -1,4 +1,4 @@
from ._mcp import MCP, MCP_Geometric
from ._mcp import MCP, MCP_Geometric, MCP_Connect, MCP_Flexible
def route_through_array(array, start, end, fully_connected=True,