lemon/howard.h
changeset 816 e746fb14e680
parent 815 0a42883c8221
child 818 8452ca46e29a
equal deleted inserted replaced
2:b71d8f2b2f28 3:a5791ea8d3ae
   271       }
   271       }
   272       _cycle_path = &path;
   272       _cycle_path = &path;
   273       return *this;
   273       return *this;
   274     }
   274     }
   275 
   275 
       
   276     /// \brief Set the tolerance used by the algorithm.
       
   277     ///
       
   278     /// This function sets the tolerance object used by the algorithm.
       
   279     ///
       
   280     /// \return <tt>(*this)</tt>
       
   281     Howard& tolerance(const Tolerance& tolerance) {
       
   282       _tolerance = tolerance;
       
   283       return *this;
       
   284     }
       
   285 
       
   286     /// \brief Return a const reference to the tolerance.
       
   287     ///
       
   288     /// This function returns a const reference to the tolerance object
       
   289     /// used by the algorithm.
       
   290     const Tolerance& tolerance() const {
       
   291       return _tolerance;
       
   292     }
       
   293 
   276     /// \name Execution control
   294     /// \name Execution control
   277     /// The simplest way to execute the algorithm is to call the \ref run()
   295     /// The simplest way to execute the algorithm is to call the \ref run()
   278     /// function.\n
   296     /// function.\n
   279     /// If you only need the minimum mean length, you may call
   297     /// If you only need the minimum mean length, you may call
   280     /// \ref findMinMean().
   298     /// \ref findMinMean().