lemon/cycle_canceling.h
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 20 Feb 2010 18:39:03 +0100
changeset 910 f3bc4e9b5f3a
parent 886 7ef7a5fbb85d
child 911 2914b6f0fde0
permissions -rw-r--r--
New heuristics for MCF algorithms (#340)
and some implementation improvements.

- A useful heuristic is added to NetworkSimplex to make the
initial pivots faster.
- A powerful global update heuristic is added to CostScaling
and the implementation is reworked with various improvements.
- Better relabeling in CostScaling to improve numerical stability
and make the code faster.
- A small improvement is made in CapacityScaling for better
delta computation.
- Add notes to the classes about the usage of vector<char> instead
of vector<bool> for efficiency reasons.
kpeter@880
     1
/* -*- C++ -*-
kpeter@880
     2
 *
kpeter@880
     3
 * This file is a part of LEMON, a generic C++ optimization library
kpeter@880
     4
 *
kpeter@880
     5
 * Copyright (C) 2003-2008
kpeter@880
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@880
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@880
     8
 *
kpeter@880
     9
 * Permission to use, modify and distribute this software is granted
kpeter@880
    10
 * provided that this copyright notice appears in all copies. For
kpeter@880
    11
 * precise terms see the accompanying LICENSE file.
kpeter@880
    12
 *
kpeter@880
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@880
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@880
    15
 * purpose.
kpeter@880
    16
 *
kpeter@880
    17
 */
kpeter@880
    18
kpeter@880
    19
#ifndef LEMON_CYCLE_CANCELING_H
kpeter@880
    20
#define LEMON_CYCLE_CANCELING_H
kpeter@880
    21
kpeter@881
    22
/// \ingroup min_cost_flow_algs
kpeter@880
    23
/// \file
kpeter@881
    24
/// \brief Cycle-canceling algorithms for finding a minimum cost flow.
kpeter@880
    25
kpeter@880
    26
#include <vector>
kpeter@881
    27
#include <limits>
kpeter@881
    28
kpeter@881
    29
#include <lemon/core.h>
kpeter@881
    30
#include <lemon/maps.h>
kpeter@881
    31
#include <lemon/path.h>
kpeter@881
    32
#include <lemon/math.h>
kpeter@881
    33
#include <lemon/static_graph.h>
kpeter@880
    34
#include <lemon/adaptors.h>
kpeter@880
    35
#include <lemon/circulation.h>
kpeter@880
    36
#include <lemon/bellman_ford.h>
kpeter@880
    37
#include <lemon/howard.h>
kpeter@880
    38
kpeter@880
    39
namespace lemon {
kpeter@880
    40
kpeter@881
    41
  /// \addtogroup min_cost_flow_algs
kpeter@880
    42
  /// @{
kpeter@880
    43
kpeter@881
    44
  /// \brief Implementation of cycle-canceling algorithms for
kpeter@881
    45
  /// finding a \ref min_cost_flow "minimum cost flow".
kpeter@880
    46
  ///
kpeter@881
    47
  /// \ref CycleCanceling implements three different cycle-canceling
kpeter@882
    48
  /// algorithms for finding a \ref min_cost_flow "minimum cost flow"
kpeter@882
    49
  /// \ref amo93networkflows, \ref klein67primal,
kpeter@882
    50
  /// \ref goldberg89cyclecanceling.
kpeter@881
    51
  /// The most efficent one (both theoretically and practically)
kpeter@881
    52
  /// is the \ref CANCEL_AND_TIGHTEN "Cancel and Tighten" algorithm,
kpeter@881
    53
  /// thus it is the default method.
kpeter@881
    54
  /// It is strongly polynomial, but in practice, it is typically much
kpeter@881
    55
  /// slower than the scaling algorithms and NetworkSimplex.
kpeter@880
    56
  ///
kpeter@881
    57
  /// Most of the parameters of the problem (except for the digraph)
kpeter@881
    58
  /// can be given using separate functions, and the algorithm can be
kpeter@881
    59
  /// executed using the \ref run() function. If some parameters are not
kpeter@881
    60
  /// specified, then default values will be used.
kpeter@880
    61
  ///
kpeter@881
    62
  /// \tparam GR The digraph type the algorithm runs on.
kpeter@881
    63
  /// \tparam V The number type used for flow amounts, capacity bounds
kpeter@881
    64
  /// and supply values in the algorithm. By default, it is \c int.
kpeter@881
    65
  /// \tparam C The number type used for costs and potentials in the
kpeter@881
    66
  /// algorithm. By default, it is the same as \c V.
kpeter@880
    67
  ///
kpeter@881
    68
  /// \warning Both number types must be signed and all input data must
kpeter@881
    69
  /// be integer.
kpeter@881
    70
  /// \warning This algorithm does not support negative costs for such
kpeter@881
    71
  /// arcs that have infinite upper bound.
kpeter@880
    72
  ///
kpeter@881
    73
  /// \note For more information about the three available methods,
kpeter@881
    74
  /// see \ref Method.
kpeter@881
    75
#ifdef DOXYGEN
kpeter@881
    76
  template <typename GR, typename V, typename C>
kpeter@881
    77
#else
kpeter@881
    78
  template <typename GR, typename V = int, typename C = V>
kpeter@881
    79
#endif
kpeter@880
    80
  class CycleCanceling
kpeter@880
    81
  {
kpeter@881
    82
  public:
kpeter@880
    83
kpeter@881
    84
    /// The type of the digraph
kpeter@881
    85
    typedef GR Digraph;
kpeter@881
    86
    /// The type of the flow amounts, capacity bounds and supply values
kpeter@881
    87
    typedef V Value;
kpeter@881
    88
    /// The type of the arc costs
kpeter@881
    89
    typedef C Cost;
kpeter@880
    90
kpeter@880
    91
  public:
kpeter@880
    92
kpeter@881
    93
    /// \brief Problem type constants for the \c run() function.
kpeter@881
    94
    ///
kpeter@881
    95
    /// Enum type containing the problem type constants that can be
kpeter@881
    96
    /// returned by the \ref run() function of the algorithm.
kpeter@881
    97
    enum ProblemType {
kpeter@881
    98
      /// The problem has no feasible solution (flow).
kpeter@881
    99
      INFEASIBLE,
kpeter@881
   100
      /// The problem has optimal solution (i.e. it is feasible and
kpeter@881
   101
      /// bounded), and the algorithm has found optimal flow and node
kpeter@881
   102
      /// potentials (primal and dual solutions).
kpeter@881
   103
      OPTIMAL,
kpeter@881
   104
      /// The digraph contains an arc of negative cost and infinite
kpeter@881
   105
      /// upper bound. It means that the objective function is unbounded
kpeter@881
   106
      /// on that arc, however, note that it could actually be bounded
kpeter@881
   107
      /// over the feasible flows, but this algroithm cannot handle
kpeter@881
   108
      /// these cases.
kpeter@881
   109
      UNBOUNDED
kpeter@881
   110
    };
kpeter@881
   111
kpeter@881
   112
    /// \brief Constants for selecting the used method.
kpeter@881
   113
    ///
kpeter@881
   114
    /// Enum type containing constants for selecting the used method
kpeter@881
   115
    /// for the \ref run() function.
kpeter@881
   116
    ///
kpeter@881
   117
    /// \ref CycleCanceling provides three different cycle-canceling
kpeter@881
   118
    /// methods. By default, \ref CANCEL_AND_TIGHTEN "Cancel and Tighten"
kpeter@881
   119
    /// is used, which proved to be the most efficient and the most robust
kpeter@881
   120
    /// on various test inputs.
kpeter@881
   121
    /// However, the other methods can be selected using the \ref run()
kpeter@881
   122
    /// function with the proper parameter.
kpeter@881
   123
    enum Method {
kpeter@881
   124
      /// A simple cycle-canceling method, which uses the
kpeter@881
   125
      /// \ref BellmanFord "Bellman-Ford" algorithm with limited iteration
kpeter@881
   126
      /// number for detecting negative cycles in the residual network.
kpeter@881
   127
      SIMPLE_CYCLE_CANCELING,
kpeter@881
   128
      /// The "Minimum Mean Cycle-Canceling" algorithm, which is a
kpeter@882
   129
      /// well-known strongly polynomial method
kpeter@882
   130
      /// \ref goldberg89cyclecanceling. It improves along a
kpeter@881
   131
      /// \ref min_mean_cycle "minimum mean cycle" in each iteration.
kpeter@881
   132
      /// Its running time complexity is O(n<sup>2</sup>m<sup>3</sup>log(n)).
kpeter@881
   133
      MINIMUM_MEAN_CYCLE_CANCELING,
kpeter@881
   134
      /// The "Cancel And Tighten" algorithm, which can be viewed as an
kpeter@882
   135
      /// improved version of the previous method
kpeter@882
   136
      /// \ref goldberg89cyclecanceling.
kpeter@881
   137
      /// It is faster both in theory and in practice, its running time
kpeter@881
   138
      /// complexity is O(n<sup>2</sup>m<sup>2</sup>log(n)).
kpeter@881
   139
      CANCEL_AND_TIGHTEN
kpeter@881
   140
    };
kpeter@880
   141
kpeter@880
   142
  private:
kpeter@880
   143
kpeter@881
   144
    TEMPLATE_DIGRAPH_TYPEDEFS(GR);
kpeter@881
   145
    
kpeter@881
   146
    typedef std::vector<int> IntVector;
kpeter@881
   147
    typedef std::vector<double> DoubleVector;
kpeter@881
   148
    typedef std::vector<Value> ValueVector;
kpeter@881
   149
    typedef std::vector<Cost> CostVector;
kpeter@910
   150
    typedef std::vector<char> BoolVector;
kpeter@910
   151
    // Note: vector<char> is used instead of vector<bool> for efficiency reasons
kpeter@880
   152
kpeter@881
   153
  private:
kpeter@881
   154
  
kpeter@881
   155
    template <typename KT, typename VT>
kpeter@886
   156
    class StaticVectorMap {
kpeter@880
   157
    public:
kpeter@881
   158
      typedef KT Key;
kpeter@881
   159
      typedef VT Value;
kpeter@881
   160
      
kpeter@886
   161
      StaticVectorMap(std::vector<Value>& v) : _v(v) {}
kpeter@881
   162
      
kpeter@881
   163
      const Value& operator[](const Key& key) const {
kpeter@881
   164
        return _v[StaticDigraph::id(key)];
kpeter@880
   165
      }
kpeter@880
   166
kpeter@881
   167
      Value& operator[](const Key& key) {
kpeter@881
   168
        return _v[StaticDigraph::id(key)];
kpeter@881
   169
      }
kpeter@881
   170
      
kpeter@881
   171
      void set(const Key& key, const Value& val) {
kpeter@881
   172
        _v[StaticDigraph::id(key)] = val;
kpeter@881
   173
      }
kpeter@881
   174
kpeter@881
   175
    private:
kpeter@881
   176
      std::vector<Value>& _v;
kpeter@881
   177
    };
kpeter@881
   178
kpeter@886
   179
    typedef StaticVectorMap<StaticDigraph::Node, Cost> CostNodeMap;
kpeter@886
   180
    typedef StaticVectorMap<StaticDigraph::Arc, Cost> CostArcMap;
kpeter@880
   181
kpeter@880
   182
  private:
kpeter@880
   183
kpeter@880
   184
kpeter@881
   185
    // Data related to the underlying digraph
kpeter@881
   186
    const GR &_graph;
kpeter@881
   187
    int _node_num;
kpeter@881
   188
    int _arc_num;
kpeter@881
   189
    int _res_node_num;
kpeter@881
   190
    int _res_arc_num;
kpeter@881
   191
    int _root;
kpeter@880
   192
kpeter@881
   193
    // Parameters of the problem
kpeter@881
   194
    bool _have_lower;
kpeter@881
   195
    Value _sum_supply;
kpeter@880
   196
kpeter@881
   197
    // Data structures for storing the digraph
kpeter@881
   198
    IntNodeMap _node_id;
kpeter@881
   199
    IntArcMap _arc_idf;
kpeter@881
   200
    IntArcMap _arc_idb;
kpeter@881
   201
    IntVector _first_out;
kpeter@910
   202
    BoolVector _forward;
kpeter@881
   203
    IntVector _source;
kpeter@881
   204
    IntVector _target;
kpeter@881
   205
    IntVector _reverse;
kpeter@880
   206
kpeter@881
   207
    // Node and arc data
kpeter@881
   208
    ValueVector _lower;
kpeter@881
   209
    ValueVector _upper;
kpeter@881
   210
    CostVector _cost;
kpeter@881
   211
    ValueVector _supply;
kpeter@881
   212
kpeter@881
   213
    ValueVector _res_cap;
kpeter@881
   214
    CostVector _pi;
kpeter@881
   215
kpeter@881
   216
    // Data for a StaticDigraph structure
kpeter@881
   217
    typedef std::pair<int, int> IntPair;
kpeter@881
   218
    StaticDigraph _sgr;
kpeter@881
   219
    std::vector<IntPair> _arc_vec;
kpeter@881
   220
    std::vector<Cost> _cost_vec;
kpeter@881
   221
    IntVector _id_vec;
kpeter@881
   222
    CostArcMap _cost_map;
kpeter@881
   223
    CostNodeMap _pi_map;
kpeter@881
   224
  
kpeter@881
   225
  public:
kpeter@881
   226
  
kpeter@881
   227
    /// \brief Constant for infinite upper bounds (capacities).
kpeter@881
   228
    ///
kpeter@881
   229
    /// Constant for infinite upper bounds (capacities).
kpeter@881
   230
    /// It is \c std::numeric_limits<Value>::infinity() if available,
kpeter@881
   231
    /// \c std::numeric_limits<Value>::max() otherwise.
kpeter@881
   232
    const Value INF;
kpeter@880
   233
kpeter@880
   234
  public:
kpeter@880
   235
kpeter@881
   236
    /// \brief Constructor.
kpeter@880
   237
    ///
kpeter@881
   238
    /// The constructor of the class.
kpeter@880
   239
    ///
kpeter@881
   240
    /// \param graph The digraph the algorithm runs on.
kpeter@881
   241
    CycleCanceling(const GR& graph) :
kpeter@881
   242
      _graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph),
kpeter@881
   243
      _cost_map(_cost_vec), _pi_map(_pi),
kpeter@881
   244
      INF(std::numeric_limits<Value>::has_infinity ?
kpeter@881
   245
          std::numeric_limits<Value>::infinity() :
kpeter@881
   246
          std::numeric_limits<Value>::max())
kpeter@880
   247
    {
kpeter@881
   248
      // Check the number types
kpeter@881
   249
      LEMON_ASSERT(std::numeric_limits<Value>::is_signed,
kpeter@881
   250
        "The flow type of CycleCanceling must be signed");
kpeter@881
   251
      LEMON_ASSERT(std::numeric_limits<Cost>::is_signed,
kpeter@881
   252
        "The cost type of CycleCanceling must be signed");
kpeter@881
   253
kpeter@881
   254
      // Resize vectors
kpeter@881
   255
      _node_num = countNodes(_graph);
kpeter@881
   256
      _arc_num = countArcs(_graph);
kpeter@881
   257
      _res_node_num = _node_num + 1;
kpeter@881
   258
      _res_arc_num = 2 * (_arc_num + _node_num);
kpeter@881
   259
      _root = _node_num;
kpeter@881
   260
kpeter@881
   261
      _first_out.resize(_res_node_num + 1);
kpeter@881
   262
      _forward.resize(_res_arc_num);
kpeter@881
   263
      _source.resize(_res_arc_num);
kpeter@881
   264
      _target.resize(_res_arc_num);
kpeter@881
   265
      _reverse.resize(_res_arc_num);
kpeter@881
   266
kpeter@881
   267
      _lower.resize(_res_arc_num);
kpeter@881
   268
      _upper.resize(_res_arc_num);
kpeter@881
   269
      _cost.resize(_res_arc_num);
kpeter@881
   270
      _supply.resize(_res_node_num);
kpeter@881
   271
      
kpeter@881
   272
      _res_cap.resize(_res_arc_num);
kpeter@881
   273
      _pi.resize(_res_node_num);
kpeter@881
   274
kpeter@881
   275
      _arc_vec.reserve(_res_arc_num);
kpeter@881
   276
      _cost_vec.reserve(_res_arc_num);
kpeter@881
   277
      _id_vec.reserve(_res_arc_num);
kpeter@881
   278
kpeter@881
   279
      // Copy the graph
kpeter@881
   280
      int i = 0, j = 0, k = 2 * _arc_num + _node_num;
kpeter@881
   281
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@881
   282
        _node_id[n] = i;
kpeter@880
   283
      }
kpeter@881
   284
      i = 0;
kpeter@881
   285
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@881
   286
        _first_out[i] = j;
kpeter@881
   287
        for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@881
   288
          _arc_idf[a] = j;
kpeter@881
   289
          _forward[j] = true;
kpeter@881
   290
          _source[j] = i;
kpeter@881
   291
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@880
   292
        }
kpeter@881
   293
        for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@881
   294
          _arc_idb[a] = j;
kpeter@881
   295
          _forward[j] = false;
kpeter@881
   296
          _source[j] = i;
kpeter@881
   297
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@881
   298
        }
kpeter@881
   299
        _forward[j] = false;
kpeter@881
   300
        _source[j] = i;
kpeter@881
   301
        _target[j] = _root;
kpeter@881
   302
        _reverse[j] = k;
kpeter@881
   303
        _forward[k] = true;
kpeter@881
   304
        _source[k] = _root;
kpeter@881
   305
        _target[k] = i;
kpeter@881
   306
        _reverse[k] = j;
kpeter@881
   307
        ++j; ++k;
kpeter@880
   308
      }
kpeter@881
   309
      _first_out[i] = j;
kpeter@881
   310
      _first_out[_res_node_num] = k;
kpeter@881
   311
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   312
        int fi = _arc_idf[a];
kpeter@881
   313
        int bi = _arc_idb[a];
kpeter@881
   314
        _reverse[fi] = bi;
kpeter@881
   315
        _reverse[bi] = fi;
kpeter@881
   316
      }
kpeter@881
   317
      
kpeter@881
   318
      // Reset parameters
kpeter@881
   319
      reset();
kpeter@880
   320
    }
kpeter@880
   321
kpeter@881
   322
    /// \name Parameters
kpeter@881
   323
    /// The parameters of the algorithm can be specified using these
kpeter@881
   324
    /// functions.
kpeter@881
   325
kpeter@881
   326
    /// @{
kpeter@881
   327
kpeter@881
   328
    /// \brief Set the lower bounds on the arcs.
kpeter@880
   329
    ///
kpeter@881
   330
    /// This function sets the lower bounds on the arcs.
kpeter@881
   331
    /// If it is not used before calling \ref run(), the lower bounds
kpeter@881
   332
    /// will be set to zero on all arcs.
kpeter@880
   333
    ///
kpeter@881
   334
    /// \param map An arc map storing the lower bounds.
kpeter@881
   335
    /// Its \c Value type must be convertible to the \c Value type
kpeter@881
   336
    /// of the algorithm.
kpeter@881
   337
    ///
kpeter@881
   338
    /// \return <tt>(*this)</tt>
kpeter@881
   339
    template <typename LowerMap>
kpeter@881
   340
    CycleCanceling& lowerMap(const LowerMap& map) {
kpeter@881
   341
      _have_lower = true;
kpeter@881
   342
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   343
        _lower[_arc_idf[a]] = map[a];
kpeter@881
   344
        _lower[_arc_idb[a]] = map[a];
kpeter@880
   345
      }
kpeter@880
   346
      return *this;
kpeter@880
   347
    }
kpeter@880
   348
kpeter@881
   349
    /// \brief Set the upper bounds (capacities) on the arcs.
kpeter@880
   350
    ///
kpeter@881
   351
    /// This function sets the upper bounds (capacities) on the arcs.
kpeter@881
   352
    /// If it is not used before calling \ref run(), the upper bounds
kpeter@881
   353
    /// will be set to \ref INF on all arcs (i.e. the flow value will be
kpeter@881
   354
    /// unbounded from above).
kpeter@880
   355
    ///
kpeter@881
   356
    /// \param map An arc map storing the upper bounds.
kpeter@881
   357
    /// Its \c Value type must be convertible to the \c Value type
kpeter@881
   358
    /// of the algorithm.
kpeter@881
   359
    ///
kpeter@881
   360
    /// \return <tt>(*this)</tt>
kpeter@881
   361
    template<typename UpperMap>
kpeter@881
   362
    CycleCanceling& upperMap(const UpperMap& map) {
kpeter@881
   363
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   364
        _upper[_arc_idf[a]] = map[a];
kpeter@880
   365
      }
kpeter@880
   366
      return *this;
kpeter@880
   367
    }
kpeter@880
   368
kpeter@881
   369
    /// \brief Set the costs of the arcs.
kpeter@881
   370
    ///
kpeter@881
   371
    /// This function sets the costs of the arcs.
kpeter@881
   372
    /// If it is not used before calling \ref run(), the costs
kpeter@881
   373
    /// will be set to \c 1 on all arcs.
kpeter@881
   374
    ///
kpeter@881
   375
    /// \param map An arc map storing the costs.
kpeter@881
   376
    /// Its \c Value type must be convertible to the \c Cost type
kpeter@881
   377
    /// of the algorithm.
kpeter@881
   378
    ///
kpeter@881
   379
    /// \return <tt>(*this)</tt>
kpeter@881
   380
    template<typename CostMap>
kpeter@881
   381
    CycleCanceling& costMap(const CostMap& map) {
kpeter@881
   382
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   383
        _cost[_arc_idf[a]] =  map[a];
kpeter@881
   384
        _cost[_arc_idb[a]] = -map[a];
kpeter@881
   385
      }
kpeter@881
   386
      return *this;
kpeter@881
   387
    }
kpeter@881
   388
kpeter@881
   389
    /// \brief Set the supply values of the nodes.
kpeter@881
   390
    ///
kpeter@881
   391
    /// This function sets the supply values of the nodes.
kpeter@881
   392
    /// If neither this function nor \ref stSupply() is used before
kpeter@881
   393
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@881
   394
    ///
kpeter@881
   395
    /// \param map A node map storing the supply values.
kpeter@881
   396
    /// Its \c Value type must be convertible to the \c Value type
kpeter@881
   397
    /// of the algorithm.
kpeter@881
   398
    ///
kpeter@881
   399
    /// \return <tt>(*this)</tt>
kpeter@881
   400
    template<typename SupplyMap>
kpeter@881
   401
    CycleCanceling& supplyMap(const SupplyMap& map) {
kpeter@881
   402
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@881
   403
        _supply[_node_id[n]] = map[n];
kpeter@881
   404
      }
kpeter@881
   405
      return *this;
kpeter@881
   406
    }
kpeter@881
   407
kpeter@881
   408
    /// \brief Set single source and target nodes and a supply value.
kpeter@881
   409
    ///
kpeter@881
   410
    /// This function sets a single source node and a single target node
kpeter@881
   411
    /// and the required flow value.
kpeter@881
   412
    /// If neither this function nor \ref supplyMap() is used before
kpeter@881
   413
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@881
   414
    ///
kpeter@881
   415
    /// Using this function has the same effect as using \ref supplyMap()
kpeter@881
   416
    /// with such a map in which \c k is assigned to \c s, \c -k is
kpeter@881
   417
    /// assigned to \c t and all other nodes have zero supply value.
kpeter@881
   418
    ///
kpeter@881
   419
    /// \param s The source node.
kpeter@881
   420
    /// \param t The target node.
kpeter@881
   421
    /// \param k The required amount of flow from node \c s to node \c t
kpeter@881
   422
    /// (i.e. the supply of \c s and the demand of \c t).
kpeter@881
   423
    ///
kpeter@881
   424
    /// \return <tt>(*this)</tt>
kpeter@881
   425
    CycleCanceling& stSupply(const Node& s, const Node& t, Value k) {
kpeter@881
   426
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@881
   427
        _supply[i] = 0;
kpeter@881
   428
      }
kpeter@881
   429
      _supply[_node_id[s]] =  k;
kpeter@881
   430
      _supply[_node_id[t]] = -k;
kpeter@881
   431
      return *this;
kpeter@881
   432
    }
kpeter@881
   433
    
kpeter@881
   434
    /// @}
kpeter@881
   435
kpeter@880
   436
    /// \name Execution control
kpeter@881
   437
    /// The algorithm can be executed using \ref run().
kpeter@880
   438
kpeter@880
   439
    /// @{
kpeter@880
   440
kpeter@880
   441
    /// \brief Run the algorithm.
kpeter@880
   442
    ///
kpeter@881
   443
    /// This function runs the algorithm.
kpeter@881
   444
    /// The paramters can be specified using functions \ref lowerMap(),
kpeter@881
   445
    /// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@881
   446
    /// For example,
kpeter@881
   447
    /// \code
kpeter@881
   448
    ///   CycleCanceling<ListDigraph> cc(graph);
kpeter@881
   449
    ///   cc.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@881
   450
    ///     .supplyMap(sup).run();
kpeter@881
   451
    /// \endcode
kpeter@880
   452
    ///
kpeter@881
   453
    /// This function can be called more than once. All the parameters
kpeter@881
   454
    /// that have been given are kept for the next call, unless
kpeter@881
   455
    /// \ref reset() is called, thus only the modified parameters
kpeter@881
   456
    /// have to be set again. See \ref reset() for examples.
kpeter@881
   457
    /// However, the underlying digraph must not be modified after this
kpeter@881
   458
    /// class have been constructed, since it copies and extends the graph.
kpeter@880
   459
    ///
kpeter@881
   460
    /// \param method The cycle-canceling method that will be used.
kpeter@881
   461
    /// For more information, see \ref Method.
kpeter@881
   462
    ///
kpeter@881
   463
    /// \return \c INFEASIBLE if no feasible flow exists,
kpeter@881
   464
    /// \n \c OPTIMAL if the problem has optimal solution
kpeter@881
   465
    /// (i.e. it is feasible and bounded), and the algorithm has found
kpeter@881
   466
    /// optimal flow and node potentials (primal and dual solutions),
kpeter@881
   467
    /// \n \c UNBOUNDED if the digraph contains an arc of negative cost
kpeter@881
   468
    /// and infinite upper bound. It means that the objective function
kpeter@881
   469
    /// is unbounded on that arc, however, note that it could actually be
kpeter@881
   470
    /// bounded over the feasible flows, but this algroithm cannot handle
kpeter@881
   471
    /// these cases.
kpeter@881
   472
    ///
kpeter@881
   473
    /// \see ProblemType, Method
kpeter@881
   474
    ProblemType run(Method method = CANCEL_AND_TIGHTEN) {
kpeter@881
   475
      ProblemType pt = init();
kpeter@881
   476
      if (pt != OPTIMAL) return pt;
kpeter@881
   477
      start(method);
kpeter@881
   478
      return OPTIMAL;
kpeter@881
   479
    }
kpeter@881
   480
kpeter@881
   481
    /// \brief Reset all the parameters that have been given before.
kpeter@881
   482
    ///
kpeter@881
   483
    /// This function resets all the paramaters that have been given
kpeter@881
   484
    /// before using functions \ref lowerMap(), \ref upperMap(),
kpeter@881
   485
    /// \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@881
   486
    ///
kpeter@881
   487
    /// It is useful for multiple run() calls. If this function is not
kpeter@881
   488
    /// used, all the parameters given before are kept for the next
kpeter@881
   489
    /// \ref run() call.
kpeter@881
   490
    /// However, the underlying digraph must not be modified after this
kpeter@881
   491
    /// class have been constructed, since it copies and extends the graph.
kpeter@881
   492
    ///
kpeter@881
   493
    /// For example,
kpeter@881
   494
    /// \code
kpeter@881
   495
    ///   CycleCanceling<ListDigraph> cs(graph);
kpeter@881
   496
    ///
kpeter@881
   497
    ///   // First run
kpeter@881
   498
    ///   cc.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@881
   499
    ///     .supplyMap(sup).run();
kpeter@881
   500
    ///
kpeter@881
   501
    ///   // Run again with modified cost map (reset() is not called,
kpeter@881
   502
    ///   // so only the cost map have to be set again)
kpeter@881
   503
    ///   cost[e] += 100;
kpeter@881
   504
    ///   cc.costMap(cost).run();
kpeter@881
   505
    ///
kpeter@881
   506
    ///   // Run again from scratch using reset()
kpeter@881
   507
    ///   // (the lower bounds will be set to zero on all arcs)
kpeter@881
   508
    ///   cc.reset();
kpeter@881
   509
    ///   cc.upperMap(capacity).costMap(cost)
kpeter@881
   510
    ///     .supplyMap(sup).run();
kpeter@881
   511
    /// \endcode
kpeter@881
   512
    ///
kpeter@881
   513
    /// \return <tt>(*this)</tt>
kpeter@881
   514
    CycleCanceling& reset() {
kpeter@881
   515
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@881
   516
        _supply[i] = 0;
kpeter@881
   517
      }
kpeter@881
   518
      int limit = _first_out[_root];
kpeter@881
   519
      for (int j = 0; j != limit; ++j) {
kpeter@881
   520
        _lower[j] = 0;
kpeter@881
   521
        _upper[j] = INF;
kpeter@881
   522
        _cost[j] = _forward[j] ? 1 : -1;
kpeter@881
   523
      }
kpeter@881
   524
      for (int j = limit; j != _res_arc_num; ++j) {
kpeter@881
   525
        _lower[j] = 0;
kpeter@881
   526
        _upper[j] = INF;
kpeter@881
   527
        _cost[j] = 0;
kpeter@881
   528
        _cost[_reverse[j]] = 0;
kpeter@881
   529
      }      
kpeter@881
   530
      _have_lower = false;
kpeter@881
   531
      return *this;
kpeter@880
   532
    }
kpeter@880
   533
kpeter@880
   534
    /// @}
kpeter@880
   535
kpeter@880
   536
    /// \name Query Functions
kpeter@881
   537
    /// The results of the algorithm can be obtained using these
kpeter@880
   538
    /// functions.\n
kpeter@881
   539
    /// The \ref run() function must be called before using them.
kpeter@880
   540
kpeter@880
   541
    /// @{
kpeter@880
   542
kpeter@881
   543
    /// \brief Return the total cost of the found flow.
kpeter@880
   544
    ///
kpeter@881
   545
    /// This function returns the total cost of the found flow.
kpeter@881
   546
    /// Its complexity is O(e).
kpeter@881
   547
    ///
kpeter@881
   548
    /// \note The return type of the function can be specified as a
kpeter@881
   549
    /// template parameter. For example,
kpeter@881
   550
    /// \code
kpeter@881
   551
    ///   cc.totalCost<double>();
kpeter@881
   552
    /// \endcode
kpeter@881
   553
    /// It is useful if the total cost cannot be stored in the \c Cost
kpeter@881
   554
    /// type of the algorithm, which is the default return type of the
kpeter@881
   555
    /// function.
kpeter@880
   556
    ///
kpeter@880
   557
    /// \pre \ref run() must be called before using this function.
kpeter@881
   558
    template <typename Number>
kpeter@881
   559
    Number totalCost() const {
kpeter@881
   560
      Number c = 0;
kpeter@881
   561
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   562
        int i = _arc_idb[a];
kpeter@881
   563
        c += static_cast<Number>(_res_cap[i]) *
kpeter@881
   564
             (-static_cast<Number>(_cost[i]));
kpeter@881
   565
      }
kpeter@881
   566
      return c;
kpeter@880
   567
    }
kpeter@880
   568
kpeter@881
   569
#ifndef DOXYGEN
kpeter@881
   570
    Cost totalCost() const {
kpeter@881
   571
      return totalCost<Cost>();
kpeter@880
   572
    }
kpeter@881
   573
#endif
kpeter@880
   574
kpeter@880
   575
    /// \brief Return the flow on the given arc.
kpeter@880
   576
    ///
kpeter@881
   577
    /// This function returns the flow on the given arc.
kpeter@880
   578
    ///
kpeter@880
   579
    /// \pre \ref run() must be called before using this function.
kpeter@881
   580
    Value flow(const Arc& a) const {
kpeter@881
   581
      return _res_cap[_arc_idb[a]];
kpeter@880
   582
    }
kpeter@880
   583
kpeter@881
   584
    /// \brief Return the flow map (the primal solution).
kpeter@880
   585
    ///
kpeter@881
   586
    /// This function copies the flow value on each arc into the given
kpeter@881
   587
    /// map. The \c Value type of the algorithm must be convertible to
kpeter@881
   588
    /// the \c Value type of the map.
kpeter@880
   589
    ///
kpeter@880
   590
    /// \pre \ref run() must be called before using this function.
kpeter@881
   591
    template <typename FlowMap>
kpeter@881
   592
    void flowMap(FlowMap &map) const {
kpeter@881
   593
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   594
        map.set(a, _res_cap[_arc_idb[a]]);
kpeter@881
   595
      }
kpeter@880
   596
    }
kpeter@880
   597
kpeter@881
   598
    /// \brief Return the potential (dual value) of the given node.
kpeter@880
   599
    ///
kpeter@881
   600
    /// This function returns the potential (dual value) of the
kpeter@881
   601
    /// given node.
kpeter@880
   602
    ///
kpeter@880
   603
    /// \pre \ref run() must be called before using this function.
kpeter@881
   604
    Cost potential(const Node& n) const {
kpeter@881
   605
      return static_cast<Cost>(_pi[_node_id[n]]);
kpeter@881
   606
    }
kpeter@881
   607
kpeter@881
   608
    /// \brief Return the potential map (the dual solution).
kpeter@881
   609
    ///
kpeter@881
   610
    /// This function copies the potential (dual value) of each node
kpeter@881
   611
    /// into the given map.
kpeter@881
   612
    /// The \c Cost type of the algorithm must be convertible to the
kpeter@881
   613
    /// \c Value type of the map.
kpeter@881
   614
    ///
kpeter@881
   615
    /// \pre \ref run() must be called before using this function.
kpeter@881
   616
    template <typename PotentialMap>
kpeter@881
   617
    void potentialMap(PotentialMap &map) const {
kpeter@881
   618
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@881
   619
        map.set(n, static_cast<Cost>(_pi[_node_id[n]]));
kpeter@881
   620
      }
kpeter@880
   621
    }
kpeter@880
   622
kpeter@880
   623
    /// @}
kpeter@880
   624
kpeter@880
   625
  private:
kpeter@880
   626
kpeter@881
   627
    // Initialize the algorithm
kpeter@881
   628
    ProblemType init() {
kpeter@881
   629
      if (_res_node_num <= 1) return INFEASIBLE;
kpeter@880
   630
kpeter@881
   631
      // Check the sum of supply values
kpeter@881
   632
      _sum_supply = 0;
kpeter@881
   633
      for (int i = 0; i != _root; ++i) {
kpeter@881
   634
        _sum_supply += _supply[i];
kpeter@880
   635
      }
kpeter@881
   636
      if (_sum_supply > 0) return INFEASIBLE;
kpeter@881
   637
      
kpeter@881
   638
kpeter@881
   639
      // Initialize vectors
kpeter@881
   640
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@881
   641
        _pi[i] = 0;
kpeter@881
   642
      }
kpeter@881
   643
      ValueVector excess(_supply);
kpeter@881
   644
      
kpeter@881
   645
      // Remove infinite upper bounds and check negative arcs
kpeter@881
   646
      const Value MAX = std::numeric_limits<Value>::max();
kpeter@881
   647
      int last_out;
kpeter@881
   648
      if (_have_lower) {
kpeter@881
   649
        for (int i = 0; i != _root; ++i) {
kpeter@881
   650
          last_out = _first_out[i+1];
kpeter@881
   651
          for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@881
   652
            if (_forward[j]) {
kpeter@881
   653
              Value c = _cost[j] < 0 ? _upper[j] : _lower[j];
kpeter@881
   654
              if (c >= MAX) return UNBOUNDED;
kpeter@881
   655
              excess[i] -= c;
kpeter@881
   656
              excess[_target[j]] += c;
kpeter@881
   657
            }
kpeter@881
   658
          }
kpeter@881
   659
        }
kpeter@881
   660
      } else {
kpeter@881
   661
        for (int i = 0; i != _root; ++i) {
kpeter@881
   662
          last_out = _first_out[i+1];
kpeter@881
   663
          for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@881
   664
            if (_forward[j] && _cost[j] < 0) {
kpeter@881
   665
              Value c = _upper[j];
kpeter@881
   666
              if (c >= MAX) return UNBOUNDED;
kpeter@881
   667
              excess[i] -= c;
kpeter@881
   668
              excess[_target[j]] += c;
kpeter@881
   669
            }
kpeter@881
   670
          }
kpeter@881
   671
        }
kpeter@881
   672
      }
kpeter@881
   673
      Value ex, max_cap = 0;
kpeter@881
   674
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@881
   675
        ex = excess[i];
kpeter@881
   676
        if (ex < 0) max_cap -= ex;
kpeter@881
   677
      }
kpeter@881
   678
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@881
   679
        if (_upper[j] >= MAX) _upper[j] = max_cap;
kpeter@880
   680
      }
kpeter@880
   681
kpeter@881
   682
      // Initialize maps for Circulation and remove non-zero lower bounds
kpeter@881
   683
      ConstMap<Arc, Value> low(0);
kpeter@881
   684
      typedef typename Digraph::template ArcMap<Value> ValueArcMap;
kpeter@881
   685
      typedef typename Digraph::template NodeMap<Value> ValueNodeMap;
kpeter@881
   686
      ValueArcMap cap(_graph), flow(_graph);
kpeter@881
   687
      ValueNodeMap sup(_graph);
kpeter@881
   688
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@881
   689
        sup[n] = _supply[_node_id[n]];
kpeter@881
   690
      }
kpeter@881
   691
      if (_have_lower) {
kpeter@881
   692
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   693
          int j = _arc_idf[a];
kpeter@881
   694
          Value c = _lower[j];
kpeter@881
   695
          cap[a] = _upper[j] - c;
kpeter@881
   696
          sup[_graph.source(a)] -= c;
kpeter@881
   697
          sup[_graph.target(a)] += c;
kpeter@881
   698
        }
kpeter@881
   699
      } else {
kpeter@881
   700
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   701
          cap[a] = _upper[_arc_idf[a]];
kpeter@881
   702
        }
kpeter@881
   703
      }
kpeter@880
   704
kpeter@881
   705
      // Find a feasible flow using Circulation
kpeter@881
   706
      Circulation<Digraph, ConstMap<Arc, Value>, ValueArcMap, ValueNodeMap>
kpeter@881
   707
        circ(_graph, low, cap, sup);
kpeter@881
   708
      if (!circ.flowMap(flow).run()) return INFEASIBLE;
kpeter@881
   709
kpeter@881
   710
      // Set residual capacities and handle GEQ supply type
kpeter@881
   711
      if (_sum_supply < 0) {
kpeter@881
   712
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   713
          Value fa = flow[a];
kpeter@881
   714
          _res_cap[_arc_idf[a]] = cap[a] - fa;
kpeter@881
   715
          _res_cap[_arc_idb[a]] = fa;
kpeter@881
   716
          sup[_graph.source(a)] -= fa;
kpeter@881
   717
          sup[_graph.target(a)] += fa;
kpeter@881
   718
        }
kpeter@881
   719
        for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@881
   720
          excess[_node_id[n]] = sup[n];
kpeter@881
   721
        }
kpeter@881
   722
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@881
   723
          int u = _target[a];
kpeter@881
   724
          int ra = _reverse[a];
kpeter@881
   725
          _res_cap[a] = -_sum_supply + 1;
kpeter@881
   726
          _res_cap[ra] = -excess[u];
kpeter@881
   727
          _cost[a] = 0;
kpeter@881
   728
          _cost[ra] = 0;
kpeter@881
   729
        }
kpeter@881
   730
      } else {
kpeter@881
   731
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@881
   732
          Value fa = flow[a];
kpeter@881
   733
          _res_cap[_arc_idf[a]] = cap[a] - fa;
kpeter@881
   734
          _res_cap[_arc_idb[a]] = fa;
kpeter@881
   735
        }
kpeter@881
   736
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@881
   737
          int ra = _reverse[a];
kpeter@881
   738
          _res_cap[a] = 1;
kpeter@881
   739
          _res_cap[ra] = 0;
kpeter@881
   740
          _cost[a] = 0;
kpeter@881
   741
          _cost[ra] = 0;
kpeter@881
   742
        }
kpeter@881
   743
      }
kpeter@881
   744
      
kpeter@881
   745
      return OPTIMAL;
kpeter@881
   746
    }
kpeter@881
   747
    
kpeter@881
   748
    // Build a StaticDigraph structure containing the current
kpeter@881
   749
    // residual network
kpeter@881
   750
    void buildResidualNetwork() {
kpeter@881
   751
      _arc_vec.clear();
kpeter@881
   752
      _cost_vec.clear();
kpeter@881
   753
      _id_vec.clear();
kpeter@881
   754
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@881
   755
        if (_res_cap[j] > 0) {
kpeter@881
   756
          _arc_vec.push_back(IntPair(_source[j], _target[j]));
kpeter@881
   757
          _cost_vec.push_back(_cost[j]);
kpeter@881
   758
          _id_vec.push_back(j);
kpeter@881
   759
        }
kpeter@881
   760
      }
kpeter@881
   761
      _sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end());
kpeter@880
   762
    }
kpeter@880
   763
kpeter@881
   764
    // Execute the algorithm and transform the results
kpeter@881
   765
    void start(Method method) {
kpeter@881
   766
      // Execute the algorithm
kpeter@881
   767
      switch (method) {
kpeter@881
   768
        case SIMPLE_CYCLE_CANCELING:
kpeter@881
   769
          startSimpleCycleCanceling();
kpeter@881
   770
          break;
kpeter@881
   771
        case MINIMUM_MEAN_CYCLE_CANCELING:
kpeter@881
   772
          startMinMeanCycleCanceling();
kpeter@881
   773
          break;
kpeter@881
   774
        case CANCEL_AND_TIGHTEN:
kpeter@881
   775
          startCancelAndTighten();
kpeter@881
   776
          break;
kpeter@881
   777
      }
kpeter@880
   778
kpeter@881
   779
      // Compute node potentials
kpeter@881
   780
      if (method != SIMPLE_CYCLE_CANCELING) {
kpeter@881
   781
        buildResidualNetwork();
kpeter@881
   782
        typename BellmanFord<StaticDigraph, CostArcMap>
kpeter@881
   783
          ::template SetDistMap<CostNodeMap>::Create bf(_sgr, _cost_map);
kpeter@881
   784
        bf.distMap(_pi_map);
kpeter@881
   785
        bf.init(0);
kpeter@881
   786
        bf.start();
kpeter@880
   787
      }
kpeter@881
   788
kpeter@881
   789
      // Handle non-zero lower bounds
kpeter@881
   790
      if (_have_lower) {
kpeter@881
   791
        int limit = _first_out[_root];
kpeter@881
   792
        for (int j = 0; j != limit; ++j) {
kpeter@881
   793
          if (!_forward[j]) _res_cap[j] += _lower[j];
kpeter@881
   794
        }
kpeter@881
   795
      }
kpeter@880
   796
    }
kpeter@880
   797
kpeter@881
   798
    // Execute the "Simple Cycle Canceling" method
kpeter@881
   799
    void startSimpleCycleCanceling() {
kpeter@881
   800
      // Constants for computing the iteration limits
kpeter@881
   801
      const int BF_FIRST_LIMIT  = 2;
kpeter@881
   802
      const double BF_LIMIT_FACTOR = 1.5;
kpeter@881
   803
      
kpeter@886
   804
      typedef StaticVectorMap<StaticDigraph::Arc, Value> FilterMap;
kpeter@881
   805
      typedef FilterArcs<StaticDigraph, FilterMap> ResDigraph;
kpeter@886
   806
      typedef StaticVectorMap<StaticDigraph::Node, StaticDigraph::Arc> PredMap;
kpeter@881
   807
      typedef typename BellmanFord<ResDigraph, CostArcMap>
kpeter@881
   808
        ::template SetDistMap<CostNodeMap>
kpeter@881
   809
        ::template SetPredMap<PredMap>::Create BF;
kpeter@881
   810
      
kpeter@881
   811
      // Build the residual network
kpeter@881
   812
      _arc_vec.clear();
kpeter@881
   813
      _cost_vec.clear();
kpeter@881
   814
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@881
   815
        _arc_vec.push_back(IntPair(_source[j], _target[j]));
kpeter@881
   816
        _cost_vec.push_back(_cost[j]);
kpeter@881
   817
      }
kpeter@881
   818
      _sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end());
kpeter@881
   819
kpeter@881
   820
      FilterMap filter_map(_res_cap);
kpeter@881
   821
      ResDigraph rgr(_sgr, filter_map);
kpeter@881
   822
      std::vector<int> cycle;
kpeter@881
   823
      std::vector<StaticDigraph::Arc> pred(_res_arc_num);
kpeter@881
   824
      PredMap pred_map(pred);
kpeter@881
   825
      BF bf(rgr, _cost_map);
kpeter@881
   826
      bf.distMap(_pi_map).predMap(pred_map);
kpeter@880
   827
kpeter@880
   828
      int length_bound = BF_FIRST_LIMIT;
kpeter@880
   829
      bool optimal = false;
kpeter@880
   830
      while (!optimal) {
kpeter@880
   831
        bf.init(0);
kpeter@880
   832
        int iter_num = 0;
kpeter@880
   833
        bool cycle_found = false;
kpeter@880
   834
        while (!cycle_found) {
kpeter@881
   835
          // Perform some iterations of the Bellman-Ford algorithm
kpeter@881
   836
          int curr_iter_num = iter_num + length_bound <= _node_num ?
kpeter@881
   837
            length_bound : _node_num - iter_num;
kpeter@880
   838
          iter_num += curr_iter_num;
kpeter@880
   839
          int real_iter_num = curr_iter_num;
kpeter@880
   840
          for (int i = 0; i < curr_iter_num; ++i) {
kpeter@880
   841
            if (bf.processNextWeakRound()) {
kpeter@880
   842
              real_iter_num = i;
kpeter@880
   843
              break;
kpeter@880
   844
            }
kpeter@880
   845
          }
kpeter@880
   846
          if (real_iter_num < curr_iter_num) {
kpeter@880
   847
            // Optimal flow is found
kpeter@880
   848
            optimal = true;
kpeter@880
   849
            break;
kpeter@880
   850
          } else {
kpeter@881
   851
            // Search for node disjoint negative cycles
kpeter@881
   852
            std::vector<int> state(_res_node_num, 0);
kpeter@880
   853
            int id = 0;
kpeter@881
   854
            for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
   855
              if (state[u] != 0) continue;
kpeter@881
   856
              ++id;
kpeter@881
   857
              int v = u;
kpeter@881
   858
              for (; v != -1 && state[v] == 0; v = pred[v] == INVALID ?
kpeter@881
   859
                   -1 : rgr.id(rgr.source(pred[v]))) {
kpeter@881
   860
                state[v] = id;
kpeter@880
   861
              }
kpeter@881
   862
              if (v != -1 && state[v] == id) {
kpeter@881
   863
                // A negative cycle is found
kpeter@880
   864
                cycle_found = true;
kpeter@880
   865
                cycle.clear();
kpeter@881
   866
                StaticDigraph::Arc a = pred[v];
kpeter@881
   867
                Value d, delta = _res_cap[rgr.id(a)];
kpeter@881
   868
                cycle.push_back(rgr.id(a));
kpeter@881
   869
                while (rgr.id(rgr.source(a)) != v) {
kpeter@881
   870
                  a = pred_map[rgr.source(a)];
kpeter@881
   871
                  d = _res_cap[rgr.id(a)];
kpeter@881
   872
                  if (d < delta) delta = d;
kpeter@881
   873
                  cycle.push_back(rgr.id(a));
kpeter@880
   874
                }
kpeter@880
   875
kpeter@881
   876
                // Augment along the cycle
kpeter@881
   877
                for (int i = 0; i < int(cycle.size()); ++i) {
kpeter@881
   878
                  int j = cycle[i];
kpeter@881
   879
                  _res_cap[j] -= delta;
kpeter@881
   880
                  _res_cap[_reverse[j]] += delta;
kpeter@881
   881
                }
kpeter@880
   882
              }
kpeter@880
   883
            }
kpeter@880
   884
          }
kpeter@880
   885
kpeter@881
   886
          // Increase iteration limit if no cycle is found
kpeter@881
   887
          if (!cycle_found) {
kpeter@881
   888
            length_bound = static_cast<int>(length_bound * BF_LIMIT_FACTOR);
kpeter@881
   889
          }
kpeter@880
   890
        }
kpeter@880
   891
      }
kpeter@880
   892
    }
kpeter@880
   893
kpeter@881
   894
    // Execute the "Minimum Mean Cycle Canceling" method
kpeter@881
   895
    void startMinMeanCycleCanceling() {
kpeter@881
   896
      typedef SimplePath<StaticDigraph> SPath;
kpeter@881
   897
      typedef typename SPath::ArcIt SPathArcIt;
kpeter@881
   898
      typedef typename Howard<StaticDigraph, CostArcMap>
kpeter@881
   899
        ::template SetPath<SPath>::Create MMC;
kpeter@881
   900
      
kpeter@881
   901
      SPath cycle;
kpeter@881
   902
      MMC mmc(_sgr, _cost_map);
kpeter@881
   903
      mmc.cycle(cycle);
kpeter@881
   904
      buildResidualNetwork();
kpeter@881
   905
      while (mmc.findMinMean() && mmc.cycleLength() < 0) {
kpeter@881
   906
        // Find the cycle
kpeter@881
   907
        mmc.findCycle();
kpeter@880
   908
kpeter@881
   909
        // Compute delta value
kpeter@881
   910
        Value delta = INF;
kpeter@881
   911
        for (SPathArcIt a(cycle); a != INVALID; ++a) {
kpeter@881
   912
          Value d = _res_cap[_id_vec[_sgr.id(a)]];
kpeter@881
   913
          if (d < delta) delta = d;
kpeter@881
   914
        }
kpeter@880
   915
kpeter@881
   916
        // Augment along the cycle
kpeter@881
   917
        for (SPathArcIt a(cycle); a != INVALID; ++a) {
kpeter@881
   918
          int j = _id_vec[_sgr.id(a)];
kpeter@881
   919
          _res_cap[j] -= delta;
kpeter@881
   920
          _res_cap[_reverse[j]] += delta;
kpeter@881
   921
        }
kpeter@881
   922
kpeter@881
   923
        // Rebuild the residual network        
kpeter@881
   924
        buildResidualNetwork();
kpeter@881
   925
      }
kpeter@881
   926
    }
kpeter@881
   927
kpeter@881
   928
    // Execute the "Cancel And Tighten" method
kpeter@881
   929
    void startCancelAndTighten() {
kpeter@881
   930
      // Constants for the min mean cycle computations
kpeter@881
   931
      const double LIMIT_FACTOR = 1.0;
kpeter@881
   932
      const int MIN_LIMIT = 5;
kpeter@881
   933
kpeter@881
   934
      // Contruct auxiliary data vectors
kpeter@881
   935
      DoubleVector pi(_res_node_num, 0.0);
kpeter@881
   936
      IntVector level(_res_node_num);
kpeter@910
   937
      BoolVector reached(_res_node_num);
kpeter@910
   938
      BoolVector processed(_res_node_num);
kpeter@881
   939
      IntVector pred_node(_res_node_num);
kpeter@881
   940
      IntVector pred_arc(_res_node_num);
kpeter@881
   941
      std::vector<int> stack(_res_node_num);
kpeter@881
   942
      std::vector<int> proc_vector(_res_node_num);
kpeter@881
   943
kpeter@881
   944
      // Initialize epsilon
kpeter@881
   945
      double epsilon = 0;
kpeter@881
   946
      for (int a = 0; a != _res_arc_num; ++a) {
kpeter@881
   947
        if (_res_cap[a] > 0 && -_cost[a] > epsilon)
kpeter@881
   948
          epsilon = -_cost[a];
kpeter@881
   949
      }
kpeter@881
   950
kpeter@881
   951
      // Start phases
kpeter@881
   952
      Tolerance<double> tol;
kpeter@881
   953
      tol.epsilon(1e-6);
kpeter@881
   954
      int limit = int(LIMIT_FACTOR * std::sqrt(double(_res_node_num)));
kpeter@881
   955
      if (limit < MIN_LIMIT) limit = MIN_LIMIT;
kpeter@881
   956
      int iter = limit;
kpeter@881
   957
      while (epsilon * _res_node_num >= 1) {
kpeter@881
   958
        // Find and cancel cycles in the admissible network using DFS
kpeter@881
   959
        for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
   960
          reached[u] = false;
kpeter@881
   961
          processed[u] = false;
kpeter@881
   962
        }
kpeter@881
   963
        int stack_head = -1;
kpeter@881
   964
        int proc_head = -1;
kpeter@881
   965
        for (int start = 0; start != _res_node_num; ++start) {
kpeter@881
   966
          if (reached[start]) continue;
kpeter@881
   967
kpeter@881
   968
          // New start node
kpeter@881
   969
          reached[start] = true;
kpeter@881
   970
          pred_arc[start] = -1;
kpeter@881
   971
          pred_node[start] = -1;
kpeter@881
   972
kpeter@881
   973
          // Find the first admissible outgoing arc
kpeter@881
   974
          double p = pi[start];
kpeter@881
   975
          int a = _first_out[start];
kpeter@881
   976
          int last_out = _first_out[start+1];
kpeter@881
   977
          for (; a != last_out && (_res_cap[a] == 0 ||
kpeter@881
   978
               !tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ;
kpeter@881
   979
          if (a == last_out) {
kpeter@881
   980
            processed[start] = true;
kpeter@881
   981
            proc_vector[++proc_head] = start;
kpeter@881
   982
            continue;
kpeter@881
   983
          }
kpeter@881
   984
          stack[++stack_head] = a;
kpeter@881
   985
kpeter@881
   986
          while (stack_head >= 0) {
kpeter@881
   987
            int sa = stack[stack_head];
kpeter@881
   988
            int u = _source[sa];
kpeter@881
   989
            int v = _target[sa];
kpeter@881
   990
kpeter@881
   991
            if (!reached[v]) {
kpeter@881
   992
              // A new node is reached
kpeter@881
   993
              reached[v] = true;
kpeter@881
   994
              pred_node[v] = u;
kpeter@881
   995
              pred_arc[v] = sa;
kpeter@881
   996
              p = pi[v];
kpeter@881
   997
              a = _first_out[v];
kpeter@881
   998
              last_out = _first_out[v+1];
kpeter@881
   999
              for (; a != last_out && (_res_cap[a] == 0 ||
kpeter@881
  1000
                   !tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ;
kpeter@881
  1001
              stack[++stack_head] = a == last_out ? -1 : a;
kpeter@881
  1002
            } else {
kpeter@881
  1003
              if (!processed[v]) {
kpeter@881
  1004
                // A cycle is found
kpeter@881
  1005
                int n, w = u;
kpeter@881
  1006
                Value d, delta = _res_cap[sa];
kpeter@881
  1007
                for (n = u; n != v; n = pred_node[n]) {
kpeter@881
  1008
                  d = _res_cap[pred_arc[n]];
kpeter@881
  1009
                  if (d <= delta) {
kpeter@881
  1010
                    delta = d;
kpeter@881
  1011
                    w = pred_node[n];
kpeter@881
  1012
                  }
kpeter@881
  1013
                }
kpeter@881
  1014
kpeter@881
  1015
                // Augment along the cycle
kpeter@881
  1016
                _res_cap[sa] -= delta;
kpeter@881
  1017
                _res_cap[_reverse[sa]] += delta;
kpeter@881
  1018
                for (n = u; n != v; n = pred_node[n]) {
kpeter@881
  1019
                  int pa = pred_arc[n];
kpeter@881
  1020
                  _res_cap[pa] -= delta;
kpeter@881
  1021
                  _res_cap[_reverse[pa]] += delta;
kpeter@881
  1022
                }
kpeter@881
  1023
                for (n = u; stack_head > 0 && n != w; n = pred_node[n]) {
kpeter@881
  1024
                  --stack_head;
kpeter@881
  1025
                  reached[n] = false;
kpeter@881
  1026
                }
kpeter@881
  1027
                u = w;
kpeter@881
  1028
              }
kpeter@881
  1029
              v = u;
kpeter@881
  1030
kpeter@881
  1031
              // Find the next admissible outgoing arc
kpeter@881
  1032
              p = pi[v];
kpeter@881
  1033
              a = stack[stack_head] + 1;
kpeter@881
  1034
              last_out = _first_out[v+1];
kpeter@881
  1035
              for (; a != last_out && (_res_cap[a] == 0 ||
kpeter@881
  1036
                   !tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ;
kpeter@881
  1037
              stack[stack_head] = a == last_out ? -1 : a;
kpeter@881
  1038
            }
kpeter@881
  1039
kpeter@881
  1040
            while (stack_head >= 0 && stack[stack_head] == -1) {
kpeter@881
  1041
              processed[v] = true;
kpeter@881
  1042
              proc_vector[++proc_head] = v;
kpeter@881
  1043
              if (--stack_head >= 0) {
kpeter@881
  1044
                // Find the next admissible outgoing arc
kpeter@881
  1045
                v = _source[stack[stack_head]];
kpeter@881
  1046
                p = pi[v];
kpeter@881
  1047
                a = stack[stack_head] + 1;
kpeter@881
  1048
                last_out = _first_out[v+1];
kpeter@881
  1049
                for (; a != last_out && (_res_cap[a] == 0 ||
kpeter@881
  1050
                     !tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ;
kpeter@881
  1051
                stack[stack_head] = a == last_out ? -1 : a;
kpeter@881
  1052
              }
kpeter@881
  1053
            }
kpeter@881
  1054
          }
kpeter@881
  1055
        }
kpeter@881
  1056
kpeter@881
  1057
        // Tighten potentials and epsilon
kpeter@881
  1058
        if (--iter > 0) {
kpeter@881
  1059
          for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
  1060
            level[u] = 0;
kpeter@881
  1061
          }
kpeter@881
  1062
          for (int i = proc_head; i > 0; --i) {
kpeter@881
  1063
            int u = proc_vector[i];
kpeter@881
  1064
            double p = pi[u];
kpeter@881
  1065
            int l = level[u] + 1;
kpeter@881
  1066
            int last_out = _first_out[u+1];
kpeter@881
  1067
            for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@881
  1068
              int v = _target[a];
kpeter@881
  1069
              if (_res_cap[a] > 0 && tol.negative(_cost[a] + p - pi[v]) &&
kpeter@881
  1070
                  l > level[v]) level[v] = l;
kpeter@881
  1071
            }
kpeter@880
  1072
          }
kpeter@880
  1073
kpeter@881
  1074
          // Modify potentials
kpeter@881
  1075
          double q = std::numeric_limits<double>::max();
kpeter@881
  1076
          for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
  1077
            int lu = level[u];
kpeter@881
  1078
            double p, pu = pi[u];
kpeter@881
  1079
            int last_out = _first_out[u+1];
kpeter@881
  1080
            for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@881
  1081
              if (_res_cap[a] == 0) continue;
kpeter@881
  1082
              int v = _target[a];
kpeter@881
  1083
              int ld = lu - level[v];
kpeter@881
  1084
              if (ld > 0) {
kpeter@881
  1085
                p = (_cost[a] + pu - pi[v] + epsilon) / (ld + 1);
kpeter@881
  1086
                if (p < q) q = p;
kpeter@881
  1087
              }
kpeter@881
  1088
            }
kpeter@881
  1089
          }
kpeter@881
  1090
          for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
  1091
            pi[u] -= q * level[u];
kpeter@881
  1092
          }
kpeter@880
  1093
kpeter@881
  1094
          // Modify epsilon
kpeter@881
  1095
          epsilon = 0;
kpeter@881
  1096
          for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
  1097
            double curr, pu = pi[u];
kpeter@881
  1098
            int last_out = _first_out[u+1];
kpeter@881
  1099
            for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@881
  1100
              if (_res_cap[a] == 0) continue;
kpeter@881
  1101
              curr = _cost[a] + pu - pi[_target[a]];
kpeter@881
  1102
              if (-curr > epsilon) epsilon = -curr;
kpeter@881
  1103
            }
kpeter@881
  1104
          }
kpeter@881
  1105
        } else {
kpeter@881
  1106
          typedef Howard<StaticDigraph, CostArcMap> MMC;
kpeter@881
  1107
          typedef typename BellmanFord<StaticDigraph, CostArcMap>
kpeter@881
  1108
            ::template SetDistMap<CostNodeMap>::Create BF;
kpeter@881
  1109
kpeter@881
  1110
          // Set epsilon to the minimum cycle mean
kpeter@881
  1111
          buildResidualNetwork();
kpeter@881
  1112
          MMC mmc(_sgr, _cost_map);
kpeter@881
  1113
          mmc.findMinMean();
kpeter@881
  1114
          epsilon = -mmc.cycleMean();
kpeter@881
  1115
          Cost cycle_cost = mmc.cycleLength();
kpeter@881
  1116
          int cycle_size = mmc.cycleArcNum();
kpeter@881
  1117
          
kpeter@881
  1118
          // Compute feasible potentials for the current epsilon
kpeter@881
  1119
          for (int i = 0; i != int(_cost_vec.size()); ++i) {
kpeter@881
  1120
            _cost_vec[i] = cycle_size * _cost_vec[i] - cycle_cost;
kpeter@881
  1121
          }
kpeter@881
  1122
          BF bf(_sgr, _cost_map);
kpeter@881
  1123
          bf.distMap(_pi_map);
kpeter@881
  1124
          bf.init(0);
kpeter@881
  1125
          bf.start();
kpeter@881
  1126
          for (int u = 0; u != _res_node_num; ++u) {
kpeter@881
  1127
            pi[u] = static_cast<double>(_pi[u]) / cycle_size;
kpeter@881
  1128
          }
kpeter@881
  1129
        
kpeter@881
  1130
          iter = limit;
kpeter@880
  1131
        }
kpeter@880
  1132
      }
kpeter@880
  1133
    }
kpeter@880
  1134
kpeter@880
  1135
  }; //class CycleCanceling
kpeter@880
  1136
kpeter@880
  1137
  ///@}
kpeter@880
  1138
kpeter@880
  1139
} //namespace lemon
kpeter@880
  1140
kpeter@880
  1141
#endif //LEMON_CYCLE_CANCELING_H