doc/groups.dox
changeset 1002 f63ba40a60f4
parent 919 e0cef67fe565
child 1003 16f55008c863
     1.1 --- a/doc/groups.dox	Sun Jan 29 22:33:14 2012 +0100
     1.2 +++ b/doc/groups.dox	Mon Jan 30 23:24:14 2012 +0100
     1.3 @@ -407,9 +407,14 @@
     1.4     strongly polynomial \ref klein67primal, \ref goldberg89cyclecanceling.
     1.5  
     1.6  In general, \ref NetworkSimplex and \ref CostScaling are the most efficient
     1.7 -implementations, but the other two algorithms could be faster in special cases.
     1.8 +implementations, but the other algorithms could be faster in special cases.
     1.9  For example, if the total supply and/or capacities are rather small,
    1.10  \ref CapacityScaling is usually the fastest algorithm (without effective scaling).
    1.11 +
    1.12 +These classes are intended to be used with integer-valued input data
    1.13 +(capacities, supply values, and costs), except for \ref CapacityScaling,
    1.14 +which is capable of handling real-valued arc costs (other numerical
    1.15 +data are required to be integer).
    1.16  */
    1.17  
    1.18  /**
    1.19 @@ -448,7 +453,7 @@
    1.20  \brief Algorithms for finding minimum mean cycles.
    1.21  
    1.22  This group contains the algorithms for finding minimum mean cycles
    1.23 -\ref clrs01algorithms, \ref amo93networkflows.
    1.24 +\ref amo93networkflows, \ref karp78characterization.
    1.25  
    1.26  The \e minimum \e mean \e cycle \e problem is to find a directed cycle
    1.27  of minimum mean length (cost) in a digraph.
    1.28 @@ -464,12 +469,11 @@
    1.29  function.
    1.30  
    1.31  LEMON contains three algorithms for solving the minimum mean cycle problem:
    1.32 -- \ref KarpMmc Karp's original algorithm \ref amo93networkflows,
    1.33 -  \ref dasdan98minmeancycle.
    1.34 +- \ref KarpMmc Karp's original algorithm \ref karp78characterization.
    1.35  - \ref HartmannOrlinMmc Hartmann-Orlin's algorithm, which is an improved
    1.36 -  version of Karp's algorithm \ref dasdan98minmeancycle.
    1.37 +  version of Karp's algorithm \ref hartmann93finding.
    1.38  - \ref HowardMmc Howard's policy iteration algorithm
    1.39 -  \ref dasdan98minmeancycle.
    1.40 +  \ref dasdan98minmeancycle, \ref dasdan04experimental.
    1.41  
    1.42  In practice, the \ref HowardMmc "Howard" algorithm turned out to be by far the
    1.43  most efficient one, though the best known theoretical bound on its running