Minimum Cost FlowWhat is a Minimum Cost Flow in a graph?The minimum cost flow problem generalizes the maximum flow problem. Let A flow in Intuition: We think of the graph as a flow network. Each directed edge in this network has a lower and upper bound on the amount of material that can be shipped over it. Each edge has also an associated cost for shipping one unit of the material over the edge. Each node in the network has a stated supply or demand of material. We want to ship material with minimum cost over the network from the nodes with supply to the nodes with demand in such a way that all capacity bounds of the edges are satisfied, and the flow out of a supply node equals its supply value and the flow into a demand node equals its demand. Where can I use Minimum Cost Flow?Flow networks can be used to model liquids flowing through pipes, parts through assembly lines, current though electrical networks, information through communication networks, and so forth.Algorithm for Minimum Cost Flow
Example of How to
Use Minimum Cost Maximum FlowThe minimum cost maximum flow problem is a combination of Maximum
Flow Problem and the Minimum
Cost Flow Problem. It asks for a maximum flow from a source node |
See also:Manual Entries: Manual Page Minimum Cost Flow |