|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--mascoptLib.algos.graph.OddGomoryHu
Provides an algorithm to compute an odd minimum-cut set, using the Gomory-Hu algorithm. The label of the nodes is nammed label, but can be change (LABEL="name") The name of the capacities is "capacity" but can be change (CAPACITY="name") A node is odd if his label is 1 and even if his label is 0. The algorithm give a minimal cut which contains an odd number of odd nodes. So in the graph, there are an even number of odd nodes. IMPORTANT : you must do the initialization before asking the results (void init) Entries : A graph results : oddMinCut returns an array, the first element is the cut solution W (a vertex Set) the second element is V-T the third element is the value of the min cut
Field Summary | |
String |
CAPACITY
The string for capacity. |
mascoptLib.graphs.EdgeSet |
edgesMinCut
The set of edges of the min cut. |
String |
LABEL
The label on nodes. |
double |
min_cut_value
The value of the min cut. |
Constructor Summary | |
OddGomoryHu(mascoptLib.graphs.Graph g)
Constructor of oo gomory hu. |
Method Summary | |
void |
init()
Initialize the algorithm. |
mascoptLib.graphs.VertexSet[] |
oddMinCut()
Returns the solution in a table. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public String LABEL
public String CAPACITY
public double min_cut_value
public mascoptLib.graphs.EdgeSet edgesMinCut
Constructor Detail |
public OddGomoryHu(mascoptLib.graphs.Graph g)
g
- the graphMethod Detail |
public void init()
public mascoptLib.graphs.VertexSet[] oddMinCut()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |