diff -r 9eac00ea588f -r dceba191c00d lemon/cycle_canceling.h --- a/lemon/cycle_canceling.h Fri Aug 09 14:07:27 2013 +0200 +++ b/lemon/cycle_canceling.h Fri Aug 09 11:28:17 2013 +0200 @@ -2,7 +2,7 @@ * * This file is a part of LEMON, a generic C++ optimization library. * - * Copyright (C) 2003-2010 + * Copyright (C) 2003-2013 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * @@ -783,7 +783,7 @@ return OPTIMAL; } - + // Check if the upper bound is greater or equal to the lower bound // on each arc. bool checkBoundMaps() { @@ -960,7 +960,7 @@ hw_mmc.cycle(cycle); buildResidualNetwork(); while (true) { - + typename HwMmc::TerminationCause hw_tc = hw_mmc.findCycleMean(hw_iter_limit); if (hw_tc == HwMmc::ITERATION_LIMIT) { @@ -976,7 +976,7 @@ if (!(hw_tc == HwMmc::OPTIMAL && hw_mmc.cycleCost() < 0)) break; hw_mmc.findCycle(); } - + // Compute delta value Value delta = INF; for (SPathArcIt a(cycle); a != INVALID; ++a) {