lemon/cost_scaling.h
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 12 Nov 2009 23:34:35 +0100
changeset 810 3b53491bf643
parent 809 22bb98ca0101
child 812 4b1b378823dc
permissions -rw-r--r--
More options for run() in scaling MCF algorithms (#180)

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