COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r1003 r919  
    408408
    409409In general, \ref NetworkSimplex and \ref CostScaling are the most efficient
    410 implementations.
    411 \ref NetworkSimplex is usually the fastest on relatively small graphs (up to
    412 several thousands of nodes) and on dense graphs, while \ref CostScaling is
    413 typically more efficient on large graphs (e.g. hundreds of thousands of
    414 nodes or above), especially if they are sparse.
    415 However, other algorithms could be faster in special cases.
     410implementations, but the other two algorithms could be faster in special cases.
    416411For example, if the total supply and/or capacities are rather small,
    417412\ref CapacityScaling is usually the fastest algorithm (without effective scaling).
    418 
    419 These classes are intended to be used with integer-valued input data
    420 (capacities, supply values, and costs), except for \ref CapacityScaling,
    421 which is capable of handling real-valued arc costs (other numerical
    422 data are required to be integer).
    423413*/
    424414
     
    459449
    460450This group contains the algorithms for finding minimum mean cycles
    461 \ref amo93networkflows, \ref karp78characterization.
     451\ref clrs01algorithms, \ref amo93networkflows.
    462452
    463453The \e minimum \e mean \e cycle \e problem is to find a directed cycle
     
    475465
    476466LEMON contains three algorithms for solving the minimum mean cycle problem:
    477 - \ref KarpMmc Karp's original algorithm \ref karp78characterization.
     467- \ref KarpMmc Karp's original algorithm \ref amo93networkflows,
     468  \ref dasdan98minmeancycle.
    478469- \ref HartmannOrlinMmc Hartmann-Orlin's algorithm, which is an improved
    479   version of Karp's algorithm \ref hartmann93finding.
     470  version of Karp's algorithm \ref dasdan98minmeancycle.
    480471- \ref HowardMmc Howard's policy iteration algorithm
    481   \ref dasdan98minmeancycle, \ref dasdan04experimental.
     472  \ref dasdan98minmeancycle.
    482473
    483474In practice, the \ref HowardMmc "Howard" algorithm turned out to be by far the
Note: See TracChangeset for help on using the changeset viewer.