HOME

TheInfoList



OR:

In mathematical optimization, the network simplex algorithm is a graph theoretic specialization of the
simplex algorithm In mathematical optimization, Dantzig's simplex algorithm (or simplex method) is a popular algorithm for linear programming. The name of the algorithm is derived from the concept of a simplex and was suggested by T. S. Motzkin. Simplices are n ...
. The algorithm is usually formulated in terms of a minimum-cost flow problem. The network simplex method works very well in practice, typically 200 to 300 times faster than the simplex method applied to general linear program of same dimensions.


History

For a long time, the existence of a provably efficient network simplex algorithm was one of the major open problems in complexity theory, even though efficient-in-practice versions were available. In 1995 Orlin provided the first polynomial algorithm with runtime of O(V^2 E \log(VC)) where C is maximum cost of any edges. Later Tarjan improved this to O(VE \log V \log(VC)) using
dynamic trees A link/cut tree is a data structure for representing a forest, a set of rooted trees, and offers the following operations: * Add a tree consisting of a single node to the forest. * Given a node in one of the trees, disconnect it (and its sub ...
in 1997. Strongly polynomial dual network simplex algorithms for the same problem, but with a higher dependence on the numbers of edges and vertices in the graph, have been known for longer.


Overview

The network simplex method is an adaptation of the bounded variable primal simplex algorithm. The basis is represented as a rooted spanning tree of the underlying network, in which variables are represented by arcs, and the simplex multipliers by node potentials. At each iteration, an entering variable is selected by some pricing strategy, based on the dual multipliers (node potentials), and forms a cycle with the arcs of the tree. The leaving variable is the arc of the cycle with the least augmenting flow. The substitution of entering for leaving arc, and the reconstruction of the tree is called a pivot. When no non-basic arc remains eligible to enter, the optimal solution has been reached.


Applications

The network simplex algorithm can be used to solve many practical problems including, * Transshipment problem * Hitchcock transportation problem * Assignment problem * Chains and antichains in
partially ordered set In mathematics, especially order theory, a partially ordered set (also poset) formalizes and generalizes the intuitive concept of an ordering, sequencing, or arrangement of the elements of a set. A poset consists of a set together with a bina ...
s * System of distinct representatives * Covers and matching in bipartite graphs * Caterer problem


References

{{Reflist


External links


Solving Network Problems
Section 14, p B-113 shows an example execution Optimization algorithms and methods Linear programming Network flow problem Mathematical problems Network theory Polynomial-time problems Graph algorithms Computational problems in graph theory