COIN-OR::LEMON - Graph Library

Changeset 1164:f63ba40a60f4 in lemon for doc/groups.dox


Ignore:
Timestamp:
01/30/12 23:24:14 (12 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Improve module docs and references (#437)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r1023 r1164  
    408408
    409409In general, \ref NetworkSimplex and \ref CostScaling are the most efficient
    410 implementations, but the other two algorithms could be faster in special cases.
     410implementations, but the other algorithms could be faster in special cases.
    411411For example, if the total supply and/or capacities are rather small,
    412412\ref CapacityScaling is usually the fastest algorithm (without effective scaling).
     413
     414These classes are intended to be used with integer-valued input data
     415(capacities, supply values, and costs), except for \ref CapacityScaling,
     416which is capable of handling real-valued arc costs (other numerical
     417data are required to be integer).
    413418*/
    414419
     
    449454
    450455This group contains the algorithms for finding minimum mean cycles
    451 \ref clrs01algorithms, \ref amo93networkflows.
     456\ref amo93networkflows, \ref karp78characterization.
    452457
    453458The \e minimum \e mean \e cycle \e problem is to find a directed cycle
     
    465470
    466471LEMON contains three algorithms for solving the minimum mean cycle problem:
    467 - \ref KarpMmc Karp's original algorithm \ref amo93networkflows,
    468   \ref dasdan98minmeancycle.
     472- \ref KarpMmc Karp's original algorithm \ref karp78characterization.
    469473- \ref HartmannOrlinMmc Hartmann-Orlin's algorithm, which is an improved
    470   version of Karp's algorithm \ref dasdan98minmeancycle.
     474  version of Karp's algorithm \ref hartmann93finding.
    471475- \ref HowardMmc Howard's policy iteration algorithm
    472   \ref dasdan98minmeancycle.
     476  \ref dasdan98minmeancycle, \ref dasdan04experimental.
    473477
    474478In practice, the \ref HowardMmc "Howard" algorithm turned out to be by far the
Note: See TracChangeset for help on using the changeset viewer.