Uses of Interface
org.jgrapht.alg.flow.mincost.MinimumCostFlowProblem
| Package | Description |
|---|---|
| org.jgrapht.alg.flow.mincost |
Algorithms for minimum cost flow
|
| org.jgrapht.alg.interfaces |
Algorithm related interfaces.
|
| org.jgrapht.generate.netgen |
Network generator components
|
-
Uses of MinimumCostFlowProblem in org.jgrapht.alg.flow.mincost
Classes in org.jgrapht.alg.flow.mincost that implement MinimumCostFlowProblem Modifier and Type Class Description static classMinimumCostFlowProblem.MinimumCostFlowProblemImpl<V,E>Default implementation of a Minimum Cost Flow ProblemMethods in org.jgrapht.alg.flow.mincost with parameters of type MinimumCostFlowProblem Modifier and Type Method Description MinimumCostFlowAlgorithm.MinimumCostFlow<E>CapacityScalingMinimumCostFlow. getMinimumCostFlow(MinimumCostFlowProblem<V,E> minimumCostFlowProblem)Calculates feasible flow of minimum cost for the minimum cost flow problem. -
Uses of MinimumCostFlowProblem in org.jgrapht.alg.interfaces
Methods in org.jgrapht.alg.interfaces with parameters of type MinimumCostFlowProblem Modifier and Type Method Description default doubleMinimumCostFlowAlgorithm. getFlowCost(MinimumCostFlowProblem<V,E> minimumCostFlowProblem)Returns the objective value (cost) of a solution to the minimum cost flow problem.MinimumCostFlowAlgorithm.MinimumCostFlow<E>MinimumCostFlowAlgorithm. getMinimumCostFlow(MinimumCostFlowProblem<V,E> minimumCostFlowProblem)Calculates feasible flow of minimum cost for the minimum cost flow problem. -
Uses of MinimumCostFlowProblem in org.jgrapht.generate.netgen
Methods in org.jgrapht.generate.netgen that return MinimumCostFlowProblem Modifier and Type Method Description MinimumCostFlowProblem<V,E>NetworkGenerator. generateMinimumCostFlowProblem(Graph<V,E> graph)Generates a minimum cost flow problem satisfying the parameters specified in the config provided to this generator.