# HG changeset patch # User Peter Kovacs # Date 1249583464 -7200 # Node ID 03887b5e0f6fa77571cf1dc76f655ba2f286acef # Parent 5795860737f53ce29934d138b575814392f10056 Rename cyclePath() to cycle() in MinMeanCycle (#179) diff -r 5795860737f5 -r 03887b5e0f6f lemon/min_mean_cycle.h --- a/lemon/min_mean_cycle.h Thu Aug 06 20:28:28 2009 +0200 +++ b/lemon/min_mean_cycle.h Thu Aug 06 20:31:04 2009 +0200 @@ -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; }