Jump to content

Auction algorithm

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Xmarynka (talk | contribs) at 16:21, 16 October 2012. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The term "auction algorithm"[1] applies to several variations of a combinatorial optimization algorithm which solves assignment problems, and network optimization problems with linear and convex/nonlinear cost. An auction algorithm has been used in a business setting to determine the best prices on a set of products offered to multiple buyers. It is an iterative procedure, so the name "auction algorithm" is related to a sales auction, where multiple bids are compared to determine the best offer, with the final sales going to the highest bidders.

The original form of the auction algorithm is an iterative method to find the optimal prices and an assignment that maximizes the net benefit in a bipartite graph, the maximum weight matching problem (MWM).[1][2] This algorithm was first proposed by Dimitri Bertsekas in 1979. Detailed analysis and extensions to more general network optimization problems (epsilon-relaxation and network auction algorithms) are provided in his network optimization books Linear Network Optimization 1991, and Network Optimization: Continuous and Discrete Models 1998. The auction algorithm has excellent computational complexity, as given in these books, and is reputed to be among the fastest for solving single commodity network optimization problems.

A later variation of the auction algorithm that solves shortest path problems was introduced by Bertsekas in 1991.[3] It is a simple algorithm for finding shortest paths in a directed graph.[3] In the single origin/single destination case, the auction algorithm maintains a single path starting at the origin, which is then extended or contracted by a single node at each iteration. Simultaneously, at most one dual variable will be adjusted at each iteration, in order to either improve or maintain the value of a dual function. In the case of multiple origins, the auction algorithm is well-suited for parallel computation.[3] The algorithm is closely related to auction algorithms for other network flow problems.[3] According to computational experiments, the auction algorithm is generally inferior to other state-of-the-art algorithms for the all destinations shortest path problem, but is very fast for problems with few destinations (substantially more than one and substantially less than the total number of nodes); see the article by Bertsekas, Pallottino, and Scutella, Polynomial Auction Algorithms for Shortest Paths.

Auction algorithms for shortest hyperpath problems have been defined by De Leone and Pretolani in 1998.[3] This is also a parallel auction algorithm for weighted bipartite matching, described by E. Jason Riedy in 2004.[4]

Comparisons

The (sequential) auction algorithms for the shortest path problem have been the subject of experiments which have been reported in technical papers.[5] Experiments clearly show that the auction algorithm is inferior to the state-of-the-art shortest-path algorithms for finding the optimal solution.[5]

Although in the auction algorithm, each iteration never decreases the total benefit (increases or remains the same), with the alternative Hungarian algorithm (from Kuhn, 1955; Munkres, 1957), each iteration always increases the total.

The auction algorithm of Bertsekas for finding shortest paths within a directed graph is reputed to perform very well on random graphs and on problems with few destinations.[3]

See also

Notes

  1. ^ a b Attention: This template ({{cite doi}}) is deprecated. To cite the publication identified by doi:10.1109/ISIT.2006.261778, please use {{cite journal}} (if it was published in a bona fide academic journal, otherwise {{cite report}} with |doi=10.1109/ISIT.2006.261778 instead., webpage PDF: MIT-bpmwm-PDF.
  2. ^ Resende, Mauricio G. C.; Pardalos, Panos M. (2006), Handbook of optimization in telecommunications, Birkhäuser, ISBN 978-0-387-30662-9, retrieved 10 March 2010
  3. ^ a b c d e f Attention: This template ({{cite doi}}) is deprecated. To cite the publication identified by doi:10.1137/0801026, please use {{cite journal}} (if it was published in a bona fide academic journal, otherwise {{cite report}} with |doi=10.1137/0801026 instead., citeseer.
  4. ^ "The Parallel Auction Algorithm for Weighted Bipartite Matching", E. Jason Riedy, UC Berkeley, February 2004, webpage: Berkeley-para4-PDF.
  5. ^ a b Larsen, Jesper; Pedersen, Ib (1999). "Experiments with the auction algorithm for the shortest path problem". Nordic J. of Computing. 6 (4): 403–42. ISSN 1236-6064., see also A note on the practical performance of the auction algorithm for the shortest path (1997) by the first author.

References

  • Dimitri P. Bertsekas. "A distributed algorithm for the assignment problem", original paper, 1979.
  • Dimitri P. Bertsekas. "Linear Network Optimization", MIT Press, 1991, on-line.
  • Dimitri P. Bertsekas. "Network Optimization: Continuous and Discrete Models", Athena Scientific, 1998.
  • "A Simpler Max-Product Maximum Weight Matching Algorithm and the Auction Algorithm", 2006, webpage PDF: MIT-bpmwm-PDF.

ua:Алгоритм аукціону