Multi-commodity flow problem

From testwiki
Jump to navigation Jump to search

Template:Short description The multi-commodity flow problem is a network flow problem with multiple commodities (flow demands) between different source and sink nodes.

Definition

Given a flow network G(V,E), where edge (u,v)E has capacity c(u,v). There are k commodities K1,K2,,Kk, defined by Ki=(si,ti,di), where si and ti is the source and sink of commodity i, and di is its demand. The variable fi(u,v) defines the fraction of flow i along edge (u,v), where fi(u,v)[0,1] in case the flow can be split among multiple paths, and fi(u,v){0,1} otherwise (i.e. "single path routing"). Find an assignment of all flow variables which satisfies the following four constraints:

(1) Link capacity: The sum of all flows routed over a link does not exceed its capacity.

(u,v)E:i=1kfi(u,v)dic(u,v)

(2) Flow conservation on transit nodes: The amount of a flow entering an intermediate node u is the same that exits the node.

i{1,,k}:(u,w)Efi(u,w)(w,u)Efi(w,u)=0whenusi,ti

(3) Flow conservation at the source: A flow must exit its source node completely.

i{1,,k}:(u,w)Efi(si,w)(w,u)Efi(w,si)=1

(4) Flow conservation at the destination: A flow must enter its sink node completely.

i{1,,k}:(u,w)Efi(w,ti)(w,u)Efi(ti,w)=1

Corresponding optimization problems

Load balancing is the attempt to route flows such that the utilization U(u,v) of all links (u,v)E is even, where

U(u,v)=i=1kfi(u,v)dic(u,v)

The problem can be solved e.g. by minimizing u,vV(U(u,v))2. A common linearization of this problem is the minimization of the maximum utilization Umax, where

(u,v)E:UmaxU(u,v)

In the minimum cost multi-commodity flow problem, there is a cost a(u,v)f(u,v) for sending a flow on (u,v). You then need to minimize

(u,v)E(a(u,v)i=1kfi(u,v)di)

In the maximum multi-commodity flow problem, the demand of each commodity is not fixed, and the total throughput is maximized by maximizing the sum of all demands i=1kdi

Relation to other problems

The minimum cost variant of the multi-commodity flow problem is a generalization of the minimum cost flow problem (in which there is merely one source s and one sink t). Variants of the circulation problem are generalizations of all flow problems. That is, any flow problem can be viewed as a particular circulation problem.[1]

Usage

Routing and wavelength assignment (RWA) in optical burst switching of Optical Network would be approached via multi-commodity flow formulas, if the network is equipped with wavelength conversion at every node.

Register allocation can be modeled as an integer minimum cost multi-commodity flow problem: Values produced by instructions are source nodes, values consumed by instructions are sink nodes and registers as well as stack slots are edges.[2]

Solutions

In the decision version of problems, the problem of producing an integer flow satisfying all demands is NP-complete,[3] even for only two commodities and unit capacities (making the problem strongly NP-complete in this case).

If fractional flows are allowed, the problem can be solved in polynomial time through linear programming,[4] or through (typically much faster) fully polynomial time approximation schemes.[5]


Applications

Multicommodity flow is applied in the overlay routing in content delivery.[6]

External resources

References

Add: Jean-Patrice Netter, Flow Augmenting Meshings: a primal type of approach to the maximum integer flow in a multi-commodity network, Ph.D dissertation Johns Hopkins University, 1971