lemon/howard.h
changeset 818 8452ca46e29a
parent 816 e746fb14e680
child 891 75e6020b19b1
equal deleted inserted replaced
3:a5791ea8d3ae 4:2caf195398ea
    95 
    95 
    96   /// \brief Implementation of Howard's algorithm for finding a minimum
    96   /// \brief Implementation of Howard's algorithm for finding a minimum
    97   /// mean cycle.
    97   /// mean cycle.
    98   ///
    98   ///
    99   /// This class implements Howard's policy iteration algorithm for finding
    99   /// This class implements Howard's policy iteration algorithm for finding
   100   /// a directed cycle of minimum mean length (cost) in a digraph.
   100   /// a directed cycle of minimum mean length (cost) in a digraph
       
   101   /// \ref amo93networkflows, \ref dasdan98minmeancycle.
   101   /// This class provides the most efficient algorithm for the
   102   /// This class provides the most efficient algorithm for the
   102   /// minimum mean cycle problem, though the best known theoretical
   103   /// minimum mean cycle problem, though the best known theoretical
   103   /// bound on its running time is exponential.
   104   /// bound on its running time is exponential.
   104   ///
   105   ///
   105   /// \tparam GR The type of the digraph the algorithm runs on.
   106   /// \tparam GR The type of the digraph the algorithm runs on.