# HG changeset patch # User Peter Kovacs # Date 2009-08-06 20:31:04 # Node ID 03887b5e0f6fa77571cf1dc76f655ba2f286acef # Parent 5795860737f53ce29934d138b575814392f10056 Rename cyclePath() to cycle() in MinMeanCycle (#179) diff --git a/lemon/min_mean_cycle.h b/lemon/min_mean_cycle.h --- a/lemon/min_mean_cycle.h +++ b/lemon/min_mean_cycle.h @@ -253,9 +253,7 @@ /// "addBack()" function of the given path structure. /// /// \return (*this) - /// - /// \sa cycle() - MinMeanCycle& cyclePath(Path &path) { + MinMeanCycle& cycle(Path &path) { if (_local_path) { delete _cycle_path; _local_path = false; @@ -389,8 +387,6 @@ /// /// \pre \ref run() or \ref findCycle() must be called before using /// this function. - /// - /// \sa cyclePath() const Path& cycle() const { return *_cycle_path; }