pmneila / PyMaxflow

Python library for creating flow networks and computing the maxflow/mincut (aka graph-cuts for Python)
http://pmneila.github.io/PyMaxflow/
242 stars 59 forks source link

Python3 fastmin uses xrange istead of range #30

Closed MMarus closed 6 years ago

MMarus commented 6 years ago

There is no xrange in python3 therefore when using fastmin in python3 it screams about the xrange.

pmneila commented 6 years ago

You're absolutely right. I'm fixing that.

pmneila commented 6 years ago

It's done. I also uploaded the new version (1.2.8) to PyPI, so you should be able to update it with pip. Thank you for letting me know this error.