COIN-OR::LEMON - Graph Library

Changeset 768:0a42883c8221 in lemon-1.2 for lemon


Ignore:
Timestamp:
08/12/09 09:45:15 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Separate group for the min mean cycle classes (#179)

Location:
lemon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • lemon/hartmann_orlin.h

    r767 r768  
    2020#define LEMON_HARTMANN_ORLIN_H
    2121
    22 /// \ingroup shortest_path
     22/// \ingroup min_mean_cycle
    2323///
    2424/// \file
     
    9191
    9292
    93   /// \addtogroup shortest_path
     93  /// \addtogroup min_mean_cycle
    9494  /// @{
    9595
     
    9999  /// This class implements the Hartmann-Orlin algorithm for finding
    100100  /// a directed cycle of minimum mean length (cost) in a digraph.
    101   /// It is an improved version of \ref Karp "Karp's original algorithm",
     101  /// It is an improved version of \ref Karp "Karp"'s original algorithm,
    102102  /// it applies an efficient early termination scheme.
     103  /// It runs in time O(ne) and uses space O(n<sup>2</sup>+e).
    103104  ///
    104105  /// \tparam GR The type of the digraph the algorithm runs on.
  • lemon/howard.h

    r767 r768  
    2020#define LEMON_HOWARD_H
    2121
    22 /// \ingroup shortest_path
     22/// \ingroup min_mean_cycle
    2323///
    2424/// \file
     
    9191
    9292
    93   /// \addtogroup shortest_path
     93  /// \addtogroup min_mean_cycle
    9494  /// @{
    9595
     
    9999  /// This class implements Howard's policy iteration algorithm for finding
    100100  /// a directed cycle of minimum mean length (cost) in a digraph.
     101  /// This class provides the most efficient algorithm for the
     102  /// minimum mean cycle problem, though the best known theoretical
     103  /// bound on its running time is exponential.
    101104  ///
    102105  /// \tparam GR The type of the digraph the algorithm runs on.
  • lemon/karp.h

    r767 r768  
    2020#define LEMON_KARP_H
    2121
    22 /// \ingroup shortest_path
     22/// \ingroup min_mean_cycle
    2323///
    2424/// \file
     
    9191
    9292
    93   /// \addtogroup shortest_path
     93  /// \addtogroup min_mean_cycle
    9494  /// @{
    9595
     
    9999  /// This class implements Karp's algorithm for finding a directed
    100100  /// cycle of minimum mean length (cost) in a digraph.
     101  /// It runs in time O(ne) and uses space O(n<sup>2</sup>+e).
    101102  ///
    102103  /// \tparam GR The type of the digraph the algorithm runs on.
Note: See TracChangeset for help on using the changeset viewer.