lemon/howard_mmc.h
changeset 1221 1c978b5bcc65
parent 1217 7bf489cf624e
child 1250 97d978243703
equal deleted inserted replaced
4:a01e2cf2bce0 5:c44d9049524e
    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 cost in a digraph
   100   /// a directed cycle of minimum mean cost in a digraph
   101   /// \ref dasdan98minmeancycle, \ref dasdan04experimental.
   101   /// \cite dasdan98minmeancycle, \cite dasdan04experimental.
   102   /// This class provides the most efficient algorithm for the
   102   /// This class provides the most efficient algorithm for the
   103   /// minimum mean cycle problem, though the best known theoretical
   103   /// minimum mean cycle problem, though the best known theoretical
   104   /// bound on its running time is exponential.
   104   /// bound on its running time is exponential.
   105   ///
   105   ///
   106   /// \tparam GR The type of the digraph the algorithm runs on.
   106   /// \tparam GR The type of the digraph the algorithm runs on.