Class MaximumFlowAlgorithm.MaximumFlowImpl<E>

java.lang.Object
org.jgrapht.alg.interfaces.FlowAlgorithm.FlowImpl<E>
org.jgrapht.alg.interfaces.MaximumFlowAlgorithm.MaximumFlowImpl<E>
Type Parameters:
E - the graph edge type
All Implemented Interfaces:
FlowAlgorithm.Flow<E>, MaximumFlowAlgorithm.MaximumFlow<E>
Enclosing interface:
MaximumFlowAlgorithm<V,​E>

public static class MaximumFlowAlgorithm.MaximumFlowImpl<E>
extends FlowAlgorithm.FlowImpl<E>
implements MaximumFlowAlgorithm.MaximumFlow<E>
Default implementation of the maximum flow
  • Constructor Summary

    Constructors 
    Constructor Description
    MaximumFlowImpl​(java.lang.Double value, java.util.Map<E,​java.lang.Double> flow)
    Create a new maximum flow
  • Method Summary

    Modifier and Type Method Description
    java.lang.Double getValue()
    Returns value of the maximum-flow for the given network
    java.lang.String toString()  

    Methods inherited from class org.jgrapht.alg.interfaces.FlowAlgorithm.FlowImpl

    getFlowMap

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.jgrapht.alg.interfaces.FlowAlgorithm.Flow

    getFlow, getFlowMap
  • Constructor Details

    • MaximumFlowImpl

      public MaximumFlowImpl​(java.lang.Double value, java.util.Map<E,​java.lang.Double> flow)
      Create a new maximum flow
      Parameters:
      value - the flow value
      flow - the flow map
  • Method Details