Not sure if the issue tracker is the right place to address my question. Basically, I need to run a maximum flow algorithm several times but I am interested not only in the value of the maximum flow (or size of the cut) but also in the flow graph (residual capacities would suffice). PyMaxflow is very fast when it comes to compute the maximum flow but using get_nx_graph(self) to retrieve the residual capacities becomes a bottleneck in my code. Is there anyway I can access to the residual capacities without using get_nx_graph(self)?
Thank you so much!