pmneila / PyMaxflow

Python library for creating flow networks and computing the maxflow/mincut (aka graph-cuts for Python)

Home Page:http://pmneila.github.io/PyMaxflow/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upgrade to core 3.04

Skielex opened this issue · comments

Firstly, thanks a lot for sharing this wrapper for the maxflow library. Really useful!

Kolmogorov released version 3.04, which should solve overflow issues for large graphs.
Any change you'd be upgrading you wrapper to use the new version?

Edit: I noticed Kolmogorov used long, but to ensure 64 bit length on Windows, perhaps long long should be used.

Done!

Thank you for letting me know. I used long long following your suggestion.