inducer / pymetis

A Python wrapper around Metis, a graph partitioning package
http://mathema.tician.de/software/pymetis
Other
164 stars 32 forks source link

nested_dissection method broken #7

Closed cathywu closed 8 years ago

cathywu commented 8 years ago

Trace:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
     51
     52     
---> 53     node_nd = pymetis.nested_dissection(adjacency=adjacency_list)
     54
     55     return node_nd

/usr/local/lib/python2.7/site-packages/PyMetis-2016.1-py2.7-macosx-10.8-intel.egg/pymetis/__init__.pyc in nested_dissection(adjacency, xadj, adjncy)
     68     IPython.embed()
     69     from pymetis._internal import edge_nd
---> 70     return edge_nd(xadj, adjncy)
     71
     72

AttributeError: 'NoneType' object has no attribute '__iter__'