Class MinimumEdgeCutStAbstract
- All Implemented Interfaces:
MinimumEdgeCutSt
- Direct Known Subclasses:
MaximumFlowAbstract
The class implements the interface by solving the problem on the index graph and then maps the results back to the original graph. The implementation for index graphs is abstract and left to the subclasses.
- Author:
- Barak Ugav
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<V,
E> VertexBiPartition <V, E> computeMinimumCut
(Graph<V, E> g, WeightFunction<E> w, Collection<V> sources, Collection<V> sinks) Compute the minimum edge-cut in a graph between two sets of vertices.<V,
E> VertexBiPartition <V, E> computeMinimumCut
(Graph<V, E> g, WeightFunction<E> w, V source, V sink) Compute the minimum edge-cut in a graph between two terminal vertices.
-
Constructor Details
-
MinimumEdgeCutStAbstract
public MinimumEdgeCutStAbstract()Default constructor.
-
-
Method Details
-
computeMinimumCut
public <V,E> VertexBiPartition<V,E> computeMinimumCut(Graph<V, E> g, WeightFunction<E> w, V source, V sink) Description copied from interface:MinimumEdgeCutSt
Compute the minimum edge-cut in a graph between two terminal vertices.Given a graph \(G=(V,E)\), an edge-cut is a partition of \(V\) into twos sets \(C, \bar{C} = V \setminus C\). The return value of this function is a partition into these two sets.
If
g
is anIntGraph
, aIVertexBiPartition
object will be returned. In that case, its better to pass aIWeightFunction
asw
to avoid boxing/unboxing.- Specified by:
computeMinimumCut
in interfaceMinimumEdgeCutSt
- Type Parameters:
V
- the vertices typeE
- the edges type- Parameters:
g
- a graphw
- an edge weight functionsource
- a special vertex that will be in \(C\)sink
- a special vertex that will be in \(\bar{C}\)- Returns:
- the cut that was computed
-
computeMinimumCut
public <V,E> VertexBiPartition<V,E> computeMinimumCut(Graph<V, E> g, WeightFunction<E> w, Collection<V> sources, Collection<V> sinks) Description copied from interface:MinimumEdgeCutSt
Compute the minimum edge-cut in a graph between two sets of vertices.Given a graph \(G=(V,E)\), an edge-cut is a partition of \(V\) into twos sets \(C, \bar{C} = V \setminus C\). The return value of this function is a partition into these two sets.
If
g
is anIntGraph
, aIVertexBiPartition
object will be returned. In that case, its better to pass aIWeightFunction
asw
, andIntCollection
assources
andsinks
to avoid boxing/unboxing.- Specified by:
computeMinimumCut
in interfaceMinimumEdgeCutSt
- Type Parameters:
V
- the vertices typeE
- the edges type- Parameters:
g
- a graphw
- an edge weight functionsources
- special vertices that will be in \(C\)sinks
- special vertices that will be in \(\bar{C}\)- Returns:
- the minimum cut between the two sets
-