Package org.jgrapht.alg.interfaces
Interface MaximumFlowAlgorithm.MaximumFlow<E>
-
- Type Parameters:
E
- the graph edge type
- All Known Implementing Classes:
MaximumFlowAlgorithm.MaximumFlowImpl
- Enclosing interface:
- MaximumFlowAlgorithm<V,E>
public static interface MaximumFlowAlgorithm.MaximumFlow<E>
A maximum flow
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<E,java.lang.Double>
getFlow()
Returns mapping from edge to flow value through this particular edgejava.lang.Double
getValue()
Returns value of the maximum-flow for the given network
-
-
-
Method Detail
-
getValue
java.lang.Double getValue()
Returns value of the maximum-flow for the given network- Returns:
- value of the maximum-flow
-
getFlow
java.util.Map<E,java.lang.Double> getFlow()
Returns mapping from edge to flow value through this particular edge- Returns:
- maximum flow
-
-