Rename cyclePath() to cycle() in MinMeanCycle (#179)
authorPeter Kovacs <kpeter@inf.elte.hu>
Thu, 06 Aug 2009 20:31:04 +0200
changeset 76203887b5e0f6f
parent 761 5795860737f5
child 763 93cd93e82f9b
Rename cyclePath() to cycle() in MinMeanCycle (#179)
lemon/min_mean_cycle.h
     1.1 --- a/lemon/min_mean_cycle.h	Thu Aug 06 20:28:28 2009 +0200
     1.2 +++ b/lemon/min_mean_cycle.h	Thu Aug 06 20:31:04 2009 +0200
     1.3 @@ -253,9 +253,7 @@
     1.4      /// "addBack()" function of the given path structure.
     1.5      ///
     1.6      /// \return <tt>(*this)</tt>
     1.7 -    ///
     1.8 -    /// \sa cycle()
     1.9 -    MinMeanCycle& cyclePath(Path &path) {
    1.10 +    MinMeanCycle& cycle(Path &path) {
    1.11        if (_local_path) {
    1.12          delete _cycle_path;
    1.13          _local_path = false;
    1.14 @@ -389,8 +387,6 @@
    1.15      ///
    1.16      /// \pre \ref run() or \ref findCycle() must be called before using
    1.17      /// this function.
    1.18 -    ///
    1.19 -    /// \sa cyclePath()
    1.20      const Path& cycle() const {
    1.21        return *_cycle_path;
    1.22      }