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