vote up 0 vote down star

I need to get an st-MinCut of a graph. I recently started using the C++ Boost libraries, which don't seem to have that st-MinCut functionality, but the do have MaxFlow implementations and I can (in theory) make use of the MaxFlow/MinCut duality.

I have gotten the "push relabel max flow" function working properly, but I can't figure out how to run a DFS, from the source along edges where the residual capacity are greater than 0, to get the nodes on the source side.

Thanks in advance.

flag

75% accept rate

2 Answers

vote up 0 vote down

You can use filtered_graph to create a (virtual) graph that only has the edges with non-zero residual capacity (or any other criteria)

link|flag
Boo. My firefox got confused. – Vladimir Prus Nov 6 at 7:58
vote up 0 vote down

You can use filtered_graph to create a (virtual) graph that only has the edges with non-zero residual capacity (or any other criteria)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.