diff -r eb2f9d453070 -r 1c978b5bcc65 lemon/cycle_canceling.h --- a/lemon/cycle_canceling.h Sat Mar 16 14:11:32 2013 +0100 +++ b/lemon/cycle_canceling.h Mon Mar 18 17:41:19 2013 +0100 @@ -47,8 +47,8 @@ /// /// \ref CycleCanceling implements three different cycle-canceling /// algorithms for finding a \ref min_cost_flow "minimum cost flow" - /// \ref amo93networkflows, \ref klein67primal, - /// \ref goldberg89cyclecanceling. + /// \cite amo93networkflows, \cite klein67primal, + /// \cite goldberg89cyclecanceling. /// The most efficent one is the \ref CANCEL_AND_TIGHTEN /// "Cancel-and-Tighten" algorithm, thus it is the default method. /// It runs in strongly polynomial time O(n2e2log(n)), @@ -131,13 +131,13 @@ SIMPLE_CYCLE_CANCELING, /// The "Minimum Mean Cycle-Canceling" algorithm, which is a /// well-known strongly polynomial method - /// \ref goldberg89cyclecanceling. It improves along a + /// \cite goldberg89cyclecanceling. It improves along a /// \ref min_mean_cycle "minimum mean cycle" in each iteration. /// Its running time complexity is O(n2e3log(n)). MINIMUM_MEAN_CYCLE_CANCELING, /// The "Cancel-and-Tighten" algorithm, which can be viewed as an /// improved version of the previous method - /// \ref goldberg89cyclecanceling. + /// \cite goldberg89cyclecanceling. /// It is faster both in theory and in practice, its running time /// complexity is O(n2e2log(n)). CANCEL_AND_TIGHTEN