template<typename GR, typename CAP>
class lemon::GomoryHu< GR, CAP >::MinCutNodeIt
This iterator class lists the nodes of a minimum cut found by GomoryHu. Before using it, you must allocate a GomoryHu class and call its run() method.
This example counts the nodes in the minimum cut separating s from t.
gom.run();
int cnt=0;
const Invalid INVALID
Invalid iterators.
Definition base.cc:32
GomoryHu(const Graph &graph, const Capacity &capacity)
Constructor.
Definition gomory_hu.h:121
Iterate on the nodes of a minimum cut.
Definition gomory_hu.h:366