How can I check that a graph network contains an unique maximal flow? Are there any polynomial-time algorithms which can do that? Thanks!
Description:
Find all cuts between source and sink. For every cut, if there are two edges with minimum capacity, then the maximum cannot be unique. Return false. If all cuts have a single minimum capacity, then return true.
But I need a more efficient algorithm.
I need to know if a graph network has an unique maximal flow (I can send maximal flow from source to sink in only one way).