|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--mascoptLib.algos.graph.STMinCut
Provides an algorithm to compute a s-t cut min in a graph. We consider the digraph associated to the graph given and we apply the algorithm of Edmonds Karps (which is implemented in the class MinCut). The name of the capacities is "capacity" but can be change (CAPACITY="name_given") It is necessary to define the value of the variable INFINITY (which equals 999999) if some capacity is greater than the default value. Entries : A graph g and the two vertices to consider (s,t). Results : vertexSetCutMin() returns the set of vertices which give the minimal cut edgeSetCutMin() returns the set of edges which belong to the minimal cut minCutValue() returns the value of the minimal cut
Field Summary | |
String |
CAPACITY
The string used to search the capacity on edges. |
double |
INFINITY
A constant for the "infinity" number. |
Constructor Summary | |
STMinCut(mascoptLib.graphs.Graph g,
mascoptLib.graphs.Vertex s,
mascoptLib.graphs.Vertex t)
Build the algorithm on a graph. |
Method Summary | |
mascoptLib.graphs.EdgeSet |
edgeSetCutMin()
Returns the edges of the min cut |
double |
minCutValue()
Computes the value of the min cut. |
mascoptLib.graphs.VertexSet |
vertexSetCutMin()
Returns the set for the min cut. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public String CAPACITY
public double INFINITY
Constructor Detail |
public STMinCut(mascoptLib.graphs.Graph g, mascoptLib.graphs.Vertex s, mascoptLib.graphs.Vertex t)
g
- the graphs
- the first vertext
- the second vertexMethod Detail |
public mascoptLib.graphs.VertexSet vertexSetCutMin()
public mascoptLib.graphs.EdgeSet edgeSetCutMin()
public double minCutValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |