lemon/capacity_scaling.h
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 02 Oct 2015 17:41:28 +0200
changeset 1002 43647f48e971
parent 821 072ec8120958
child 1004 1e87c18cf65e
permissions -rw-r--r--
Add missing #include to capacity_scaling.h (#600)
kpeter@805
     1
/* -*- C++ -*-
kpeter@805
     2
 *
kpeter@805
     3
 * This file is a part of LEMON, a generic C++ optimization library
kpeter@805
     4
 *
kpeter@805
     5
 * Copyright (C) 2003-2008
kpeter@805
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@805
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@805
     8
 *
kpeter@805
     9
 * Permission to use, modify and distribute this software is granted
kpeter@805
    10
 * provided that this copyright notice appears in all copies. For
kpeter@805
    11
 * precise terms see the accompanying LICENSE file.
kpeter@805
    12
 *
kpeter@805
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@805
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@805
    15
 * purpose.
kpeter@805
    16
 *
kpeter@805
    17
 */
kpeter@805
    18
kpeter@805
    19
#ifndef LEMON_CAPACITY_SCALING_H
kpeter@805
    20
#define LEMON_CAPACITY_SCALING_H
kpeter@805
    21
kpeter@806
    22
/// \ingroup min_cost_flow_algs
kpeter@805
    23
///
kpeter@805
    24
/// \file
kpeter@806
    25
/// \brief Capacity Scaling algorithm for finding a minimum cost flow.
kpeter@805
    26
kpeter@805
    27
#include <vector>
kpeter@806
    28
#include <limits>
kpeter@806
    29
#include <lemon/core.h>
kpeter@1002
    30
#include <lemon/maps.h>
kpeter@805
    31
#include <lemon/bin_heap.h>
kpeter@805
    32
kpeter@805
    33
namespace lemon {
kpeter@805
    34
kpeter@807
    35
  /// \brief Default traits class of CapacityScaling algorithm.
kpeter@807
    36
  ///
kpeter@807
    37
  /// Default traits class of CapacityScaling algorithm.
kpeter@807
    38
  /// \tparam GR Digraph type.
kpeter@812
    39
  /// \tparam V The number type used for flow amounts, capacity bounds
kpeter@807
    40
  /// and supply values. By default it is \c int.
kpeter@812
    41
  /// \tparam C The number type used for costs and potentials.
kpeter@807
    42
  /// By default it is the same as \c V.
kpeter@807
    43
  template <typename GR, typename V = int, typename C = V>
kpeter@807
    44
  struct CapacityScalingDefaultTraits
kpeter@807
    45
  {
kpeter@807
    46
    /// The type of the digraph
kpeter@807
    47
    typedef GR Digraph;
kpeter@807
    48
    /// The type of the flow amounts, capacity bounds and supply values
kpeter@807
    49
    typedef V Value;
kpeter@807
    50
    /// The type of the arc costs
kpeter@807
    51
    typedef C Cost;
kpeter@807
    52
kpeter@807
    53
    /// \brief The type of the heap used for internal Dijkstra computations.
kpeter@807
    54
    ///
kpeter@807
    55
    /// The type of the heap used for internal Dijkstra computations.
kpeter@807
    56
    /// It must conform to the \ref lemon::concepts::Heap "Heap" concept,
kpeter@807
    57
    /// its priority type must be \c Cost and its cross reference type
kpeter@807
    58
    /// must be \ref RangeMap "RangeMap<int>".
kpeter@807
    59
    typedef BinHeap<Cost, RangeMap<int> > Heap;
kpeter@807
    60
  };
kpeter@807
    61
kpeter@806
    62
  /// \addtogroup min_cost_flow_algs
kpeter@805
    63
  /// @{
kpeter@805
    64
kpeter@806
    65
  /// \brief Implementation of the Capacity Scaling algorithm for
kpeter@806
    66
  /// finding a \ref min_cost_flow "minimum cost flow".
kpeter@805
    67
  ///
kpeter@805
    68
  /// \ref CapacityScaling implements the capacity scaling version
kpeter@806
    69
  /// of the successive shortest path algorithm for finding a
kpeter@813
    70
  /// \ref min_cost_flow "minimum cost flow" \ref amo93networkflows,
kpeter@813
    71
  /// \ref edmondskarp72theoretical. It is an efficient dual
kpeter@806
    72
  /// solution method.
kpeter@805
    73
  ///
kpeter@806
    74
  /// Most of the parameters of the problem (except for the digraph)
kpeter@806
    75
  /// can be given using separate functions, and the algorithm can be
kpeter@806
    76
  /// executed using the \ref run() function. If some parameters are not
kpeter@806
    77
  /// specified, then default values will be used.
kpeter@805
    78
  ///
kpeter@806
    79
  /// \tparam GR The digraph type the algorithm runs on.
kpeter@812
    80
  /// \tparam V The number type used for flow amounts, capacity bounds
kpeter@806
    81
  /// and supply values in the algorithm. By default it is \c int.
kpeter@812
    82
  /// \tparam C The number type used for costs and potentials in the
kpeter@806
    83
  /// algorithm. By default it is the same as \c V.
kpeter@805
    84
  ///
kpeter@812
    85
  /// \warning Both number types must be signed and all input data must
kpeter@806
    86
  /// be integer.
kpeter@806
    87
  /// \warning This algorithm does not support negative costs for such
kpeter@806
    88
  /// arcs that have infinite upper bound.
kpeter@807
    89
#ifdef DOXYGEN
kpeter@807
    90
  template <typename GR, typename V, typename C, typename TR>
kpeter@807
    91
#else
kpeter@807
    92
  template < typename GR, typename V = int, typename C = V,
kpeter@807
    93
             typename TR = CapacityScalingDefaultTraits<GR, V, C> >
kpeter@807
    94
#endif
kpeter@805
    95
  class CapacityScaling
kpeter@805
    96
  {
kpeter@806
    97
  public:
kpeter@805
    98
kpeter@807
    99
    /// The type of the digraph
kpeter@807
   100
    typedef typename TR::Digraph Digraph;
kpeter@806
   101
    /// The type of the flow amounts, capacity bounds and supply values
kpeter@807
   102
    typedef typename TR::Value Value;
kpeter@806
   103
    /// The type of the arc costs
kpeter@807
   104
    typedef typename TR::Cost Cost;
kpeter@807
   105
kpeter@807
   106
    /// The type of the heap used for internal Dijkstra computations
kpeter@807
   107
    typedef typename TR::Heap Heap;
kpeter@807
   108
kpeter@807
   109
    /// The \ref CapacityScalingDefaultTraits "traits class" of the algorithm
kpeter@807
   110
    typedef TR Traits;
kpeter@805
   111
kpeter@805
   112
  public:
kpeter@805
   113
kpeter@806
   114
    /// \brief Problem type constants for the \c run() function.
kpeter@806
   115
    ///
kpeter@806
   116
    /// Enum type containing the problem type constants that can be
kpeter@806
   117
    /// returned by the \ref run() function of the algorithm.
kpeter@806
   118
    enum ProblemType {
kpeter@806
   119
      /// The problem has no feasible solution (flow).
kpeter@806
   120
      INFEASIBLE,
kpeter@806
   121
      /// The problem has optimal solution (i.e. it is feasible and
kpeter@806
   122
      /// bounded), and the algorithm has found optimal flow and node
kpeter@806
   123
      /// potentials (primal and dual solutions).
kpeter@806
   124
      OPTIMAL,
kpeter@806
   125
      /// The digraph contains an arc of negative cost and infinite
kpeter@806
   126
      /// upper bound. It means that the objective function is unbounded
kpeter@812
   127
      /// on that arc, however, note that it could actually be bounded
kpeter@806
   128
      /// over the feasible flows, but this algroithm cannot handle
kpeter@806
   129
      /// these cases.
kpeter@806
   130
      UNBOUNDED
kpeter@806
   131
    };
kpeter@806
   132
  
kpeter@806
   133
  private:
kpeter@806
   134
kpeter@806
   135
    TEMPLATE_DIGRAPH_TYPEDEFS(GR);
kpeter@806
   136
kpeter@806
   137
    typedef std::vector<int> IntVector;
kpeter@811
   138
    typedef std::vector<char> BoolVector;
kpeter@806
   139
    typedef std::vector<Value> ValueVector;
kpeter@806
   140
    typedef std::vector<Cost> CostVector;
kpeter@805
   141
kpeter@805
   142
  private:
kpeter@805
   143
kpeter@806
   144
    // Data related to the underlying digraph
kpeter@806
   145
    const GR &_graph;
kpeter@806
   146
    int _node_num;
kpeter@806
   147
    int _arc_num;
kpeter@806
   148
    int _res_arc_num;
kpeter@806
   149
    int _root;
kpeter@806
   150
kpeter@806
   151
    // Parameters of the problem
kpeter@806
   152
    bool _have_lower;
kpeter@806
   153
    Value _sum_supply;
kpeter@806
   154
kpeter@806
   155
    // Data structures for storing the digraph
kpeter@806
   156
    IntNodeMap _node_id;
kpeter@806
   157
    IntArcMap _arc_idf;
kpeter@806
   158
    IntArcMap _arc_idb;
kpeter@806
   159
    IntVector _first_out;
kpeter@806
   160
    BoolVector _forward;
kpeter@806
   161
    IntVector _source;
kpeter@806
   162
    IntVector _target;
kpeter@806
   163
    IntVector _reverse;
kpeter@806
   164
kpeter@806
   165
    // Node and arc data
kpeter@806
   166
    ValueVector _lower;
kpeter@806
   167
    ValueVector _upper;
kpeter@806
   168
    CostVector _cost;
kpeter@806
   169
    ValueVector _supply;
kpeter@806
   170
kpeter@806
   171
    ValueVector _res_cap;
kpeter@806
   172
    CostVector _pi;
kpeter@806
   173
    ValueVector _excess;
kpeter@806
   174
    IntVector _excess_nodes;
kpeter@806
   175
    IntVector _deficit_nodes;
kpeter@806
   176
kpeter@806
   177
    Value _delta;
kpeter@810
   178
    int _factor;
kpeter@806
   179
    IntVector _pred;
kpeter@806
   180
kpeter@806
   181
  public:
kpeter@806
   182
  
kpeter@806
   183
    /// \brief Constant for infinite upper bounds (capacities).
kpeter@805
   184
    ///
kpeter@806
   185
    /// Constant for infinite upper bounds (capacities).
kpeter@806
   186
    /// It is \c std::numeric_limits<Value>::infinity() if available,
kpeter@806
   187
    /// \c std::numeric_limits<Value>::max() otherwise.
kpeter@806
   188
    const Value INF;
kpeter@806
   189
kpeter@806
   190
  private:
kpeter@806
   191
kpeter@806
   192
    // Special implementation of the Dijkstra algorithm for finding
kpeter@806
   193
    // shortest paths in the residual network of the digraph with
kpeter@806
   194
    // respect to the reduced arc costs and modifying the node
kpeter@806
   195
    // potentials according to the found distance labels.
kpeter@805
   196
    class ResidualDijkstra
kpeter@805
   197
    {
kpeter@805
   198
    private:
kpeter@805
   199
kpeter@806
   200
      int _node_num;
kpeter@811
   201
      bool _geq;
kpeter@806
   202
      const IntVector &_first_out;
kpeter@806
   203
      const IntVector &_target;
kpeter@806
   204
      const CostVector &_cost;
kpeter@806
   205
      const ValueVector &_res_cap;
kpeter@806
   206
      const ValueVector &_excess;
kpeter@806
   207
      CostVector &_pi;
kpeter@806
   208
      IntVector &_pred;
kpeter@806
   209
      
kpeter@806
   210
      IntVector _proc_nodes;
kpeter@806
   211
      CostVector _dist;
kpeter@806
   212
      
kpeter@805
   213
    public:
kpeter@805
   214
kpeter@806
   215
      ResidualDijkstra(CapacityScaling& cs) :
kpeter@811
   216
        _node_num(cs._node_num), _geq(cs._sum_supply < 0),
kpeter@811
   217
        _first_out(cs._first_out), _target(cs._target), _cost(cs._cost),
kpeter@811
   218
        _res_cap(cs._res_cap), _excess(cs._excess), _pi(cs._pi),
kpeter@811
   219
        _pred(cs._pred), _dist(cs._node_num)
kpeter@805
   220
      {}
kpeter@805
   221
kpeter@806
   222
      int run(int s, Value delta = 1) {
kpeter@807
   223
        RangeMap<int> heap_cross_ref(_node_num, Heap::PRE_HEAP);
kpeter@805
   224
        Heap heap(heap_cross_ref);
kpeter@805
   225
        heap.push(s, 0);
kpeter@806
   226
        _pred[s] = -1;
kpeter@805
   227
        _proc_nodes.clear();
kpeter@805
   228
kpeter@806
   229
        // Process nodes
kpeter@805
   230
        while (!heap.empty() && _excess[heap.top()] > -delta) {
kpeter@806
   231
          int u = heap.top(), v;
kpeter@806
   232
          Cost d = heap.prio() + _pi[u], dn;
kpeter@805
   233
          _dist[u] = heap.prio();
kpeter@806
   234
          _proc_nodes.push_back(u);
kpeter@805
   235
          heap.pop();
kpeter@805
   236
kpeter@806
   237
          // Traverse outgoing residual arcs
kpeter@811
   238
          int last_out = _geq ? _first_out[u+1] : _first_out[u+1] - 1;
kpeter@811
   239
          for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@806
   240
            if (_res_cap[a] < delta) continue;
kpeter@806
   241
            v = _target[a];
kpeter@806
   242
            switch (heap.state(v)) {
kpeter@805
   243
              case Heap::PRE_HEAP:
kpeter@806
   244
                heap.push(v, d + _cost[a] - _pi[v]);
kpeter@806
   245
                _pred[v] = a;
kpeter@805
   246
                break;
kpeter@805
   247
              case Heap::IN_HEAP:
kpeter@806
   248
                dn = d + _cost[a] - _pi[v];
kpeter@806
   249
                if (dn < heap[v]) {
kpeter@806
   250
                  heap.decrease(v, dn);
kpeter@806
   251
                  _pred[v] = a;
kpeter@805
   252
                }
kpeter@805
   253
                break;
kpeter@805
   254
              case Heap::POST_HEAP:
kpeter@805
   255
                break;
kpeter@805
   256
            }
kpeter@805
   257
          }
kpeter@805
   258
        }
kpeter@806
   259
        if (heap.empty()) return -1;
kpeter@805
   260
kpeter@806
   261
        // Update potentials of processed nodes
kpeter@806
   262
        int t = heap.top();
kpeter@806
   263
        Cost dt = heap.prio();
kpeter@806
   264
        for (int i = 0; i < int(_proc_nodes.size()); ++i) {
kpeter@806
   265
          _pi[_proc_nodes[i]] += _dist[_proc_nodes[i]] - dt;
kpeter@806
   266
        }
kpeter@805
   267
kpeter@805
   268
        return t;
kpeter@805
   269
      }
kpeter@805
   270
kpeter@805
   271
    }; //class ResidualDijkstra
kpeter@805
   272
kpeter@805
   273
  public:
kpeter@805
   274
kpeter@807
   275
    /// \name Named Template Parameters
kpeter@807
   276
    /// @{
kpeter@807
   277
kpeter@807
   278
    template <typename T>
kpeter@807
   279
    struct SetHeapTraits : public Traits {
kpeter@807
   280
      typedef T Heap;
kpeter@807
   281
    };
kpeter@807
   282
kpeter@807
   283
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@807
   284
    /// \c Heap type.
kpeter@807
   285
    ///
kpeter@807
   286
    /// \ref named-templ-param "Named parameter" for setting \c Heap
kpeter@807
   287
    /// type, which is used for internal Dijkstra computations.
kpeter@807
   288
    /// It must conform to the \ref lemon::concepts::Heap "Heap" concept,
kpeter@807
   289
    /// its priority type must be \c Cost and its cross reference type
kpeter@807
   290
    /// must be \ref RangeMap "RangeMap<int>".
kpeter@807
   291
    template <typename T>
kpeter@807
   292
    struct SetHeap
kpeter@807
   293
      : public CapacityScaling<GR, V, C, SetHeapTraits<T> > {
kpeter@807
   294
      typedef  CapacityScaling<GR, V, C, SetHeapTraits<T> > Create;
kpeter@807
   295
    };
kpeter@807
   296
kpeter@807
   297
    /// @}
kpeter@807
   298
kpeter@807
   299
  public:
kpeter@807
   300
kpeter@806
   301
    /// \brief Constructor.
kpeter@805
   302
    ///
kpeter@806
   303
    /// The constructor of the class.
kpeter@805
   304
    ///
kpeter@806
   305
    /// \param graph The digraph the algorithm runs on.
kpeter@806
   306
    CapacityScaling(const GR& graph) :
kpeter@806
   307
      _graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph),
kpeter@806
   308
      INF(std::numeric_limits<Value>::has_infinity ?
kpeter@806
   309
          std::numeric_limits<Value>::infinity() :
kpeter@806
   310
          std::numeric_limits<Value>::max())
kpeter@805
   311
    {
kpeter@812
   312
      // Check the number types
kpeter@806
   313
      LEMON_ASSERT(std::numeric_limits<Value>::is_signed,
kpeter@806
   314
        "The flow type of CapacityScaling must be signed");
kpeter@806
   315
      LEMON_ASSERT(std::numeric_limits<Cost>::is_signed,
kpeter@806
   316
        "The cost type of CapacityScaling must be signed");
kpeter@806
   317
kpeter@806
   318
      // Resize vectors
kpeter@806
   319
      _node_num = countNodes(_graph);
kpeter@806
   320
      _arc_num = countArcs(_graph);
kpeter@806
   321
      _res_arc_num = 2 * (_arc_num + _node_num);
kpeter@806
   322
      _root = _node_num;
kpeter@806
   323
      ++_node_num;
kpeter@806
   324
kpeter@806
   325
      _first_out.resize(_node_num + 1);
kpeter@806
   326
      _forward.resize(_res_arc_num);
kpeter@806
   327
      _source.resize(_res_arc_num);
kpeter@806
   328
      _target.resize(_res_arc_num);
kpeter@806
   329
      _reverse.resize(_res_arc_num);
kpeter@806
   330
kpeter@806
   331
      _lower.resize(_res_arc_num);
kpeter@806
   332
      _upper.resize(_res_arc_num);
kpeter@806
   333
      _cost.resize(_res_arc_num);
kpeter@806
   334
      _supply.resize(_node_num);
kpeter@806
   335
      
kpeter@806
   336
      _res_cap.resize(_res_arc_num);
kpeter@806
   337
      _pi.resize(_node_num);
kpeter@806
   338
      _excess.resize(_node_num);
kpeter@806
   339
      _pred.resize(_node_num);
kpeter@806
   340
kpeter@806
   341
      // Copy the graph
kpeter@806
   342
      int i = 0, j = 0, k = 2 * _arc_num + _node_num - 1;
kpeter@806
   343
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@806
   344
        _node_id[n] = i;
kpeter@805
   345
      }
kpeter@806
   346
      i = 0;
kpeter@806
   347
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@806
   348
        _first_out[i] = j;
kpeter@806
   349
        for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@806
   350
          _arc_idf[a] = j;
kpeter@806
   351
          _forward[j] = true;
kpeter@806
   352
          _source[j] = i;
kpeter@806
   353
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@806
   354
        }
kpeter@806
   355
        for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@806
   356
          _arc_idb[a] = j;
kpeter@806
   357
          _forward[j] = false;
kpeter@806
   358
          _source[j] = i;
kpeter@806
   359
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@806
   360
        }
kpeter@806
   361
        _forward[j] = false;
kpeter@806
   362
        _source[j] = i;
kpeter@806
   363
        _target[j] = _root;
kpeter@806
   364
        _reverse[j] = k;
kpeter@806
   365
        _forward[k] = true;
kpeter@806
   366
        _source[k] = _root;
kpeter@806
   367
        _target[k] = i;
kpeter@806
   368
        _reverse[k] = j;
kpeter@806
   369
        ++j; ++k;
kpeter@806
   370
      }
kpeter@806
   371
      _first_out[i] = j;
kpeter@806
   372
      _first_out[_node_num] = k;
kpeter@805
   373
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   374
        int fi = _arc_idf[a];
kpeter@806
   375
        int bi = _arc_idb[a];
kpeter@806
   376
        _reverse[fi] = bi;
kpeter@806
   377
        _reverse[bi] = fi;
kpeter@805
   378
      }
kpeter@806
   379
      
kpeter@806
   380
      // Reset parameters
kpeter@806
   381
      reset();
kpeter@805
   382
    }
kpeter@805
   383
kpeter@806
   384
    /// \name Parameters
kpeter@806
   385
    /// The parameters of the algorithm can be specified using these
kpeter@806
   386
    /// functions.
kpeter@806
   387
kpeter@806
   388
    /// @{
kpeter@806
   389
kpeter@806
   390
    /// \brief Set the lower bounds on the arcs.
kpeter@805
   391
    ///
kpeter@806
   392
    /// This function sets the lower bounds on the arcs.
kpeter@806
   393
    /// If it is not used before calling \ref run(), the lower bounds
kpeter@806
   394
    /// will be set to zero on all arcs.
kpeter@805
   395
    ///
kpeter@806
   396
    /// \param map An arc map storing the lower bounds.
kpeter@806
   397
    /// Its \c Value type must be convertible to the \c Value type
kpeter@806
   398
    /// of the algorithm.
kpeter@806
   399
    ///
kpeter@806
   400
    /// \return <tt>(*this)</tt>
kpeter@806
   401
    template <typename LowerMap>
kpeter@806
   402
    CapacityScaling& lowerMap(const LowerMap& map) {
kpeter@806
   403
      _have_lower = true;
kpeter@806
   404
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   405
        _lower[_arc_idf[a]] = map[a];
kpeter@806
   406
        _lower[_arc_idb[a]] = map[a];
kpeter@805
   407
      }
kpeter@805
   408
      return *this;
kpeter@805
   409
    }
kpeter@805
   410
kpeter@806
   411
    /// \brief Set the upper bounds (capacities) on the arcs.
kpeter@805
   412
    ///
kpeter@806
   413
    /// This function sets the upper bounds (capacities) on the arcs.
kpeter@806
   414
    /// If it is not used before calling \ref run(), the upper bounds
kpeter@806
   415
    /// will be set to \ref INF on all arcs (i.e. the flow value will be
kpeter@812
   416
    /// unbounded from above).
kpeter@805
   417
    ///
kpeter@806
   418
    /// \param map An arc map storing the upper bounds.
kpeter@806
   419
    /// Its \c Value type must be convertible to the \c Value type
kpeter@806
   420
    /// of the algorithm.
kpeter@806
   421
    ///
kpeter@806
   422
    /// \return <tt>(*this)</tt>
kpeter@806
   423
    template<typename UpperMap>
kpeter@806
   424
    CapacityScaling& upperMap(const UpperMap& map) {
kpeter@806
   425
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   426
        _upper[_arc_idf[a]] = map[a];
kpeter@805
   427
      }
kpeter@805
   428
      return *this;
kpeter@805
   429
    }
kpeter@805
   430
kpeter@806
   431
    /// \brief Set the costs of the arcs.
kpeter@806
   432
    ///
kpeter@806
   433
    /// This function sets the costs of the arcs.
kpeter@806
   434
    /// If it is not used before calling \ref run(), the costs
kpeter@806
   435
    /// will be set to \c 1 on all arcs.
kpeter@806
   436
    ///
kpeter@806
   437
    /// \param map An arc map storing the costs.
kpeter@806
   438
    /// Its \c Value type must be convertible to the \c Cost type
kpeter@806
   439
    /// of the algorithm.
kpeter@806
   440
    ///
kpeter@806
   441
    /// \return <tt>(*this)</tt>
kpeter@806
   442
    template<typename CostMap>
kpeter@806
   443
    CapacityScaling& costMap(const CostMap& map) {
kpeter@806
   444
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   445
        _cost[_arc_idf[a]] =  map[a];
kpeter@806
   446
        _cost[_arc_idb[a]] = -map[a];
kpeter@806
   447
      }
kpeter@806
   448
      return *this;
kpeter@806
   449
    }
kpeter@806
   450
kpeter@806
   451
    /// \brief Set the supply values of the nodes.
kpeter@806
   452
    ///
kpeter@806
   453
    /// This function sets the supply values of the nodes.
kpeter@806
   454
    /// If neither this function nor \ref stSupply() is used before
kpeter@806
   455
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@806
   456
    ///
kpeter@806
   457
    /// \param map A node map storing the supply values.
kpeter@806
   458
    /// Its \c Value type must be convertible to the \c Value type
kpeter@806
   459
    /// of the algorithm.
kpeter@806
   460
    ///
kpeter@806
   461
    /// \return <tt>(*this)</tt>
kpeter@806
   462
    template<typename SupplyMap>
kpeter@806
   463
    CapacityScaling& supplyMap(const SupplyMap& map) {
kpeter@806
   464
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@806
   465
        _supply[_node_id[n]] = map[n];
kpeter@806
   466
      }
kpeter@806
   467
      return *this;
kpeter@806
   468
    }
kpeter@806
   469
kpeter@806
   470
    /// \brief Set single source and target nodes and a supply value.
kpeter@806
   471
    ///
kpeter@806
   472
    /// This function sets a single source node and a single target node
kpeter@806
   473
    /// and the required flow value.
kpeter@806
   474
    /// If neither this function nor \ref supplyMap() is used before
kpeter@806
   475
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@806
   476
    ///
kpeter@806
   477
    /// Using this function has the same effect as using \ref supplyMap()
kpeter@806
   478
    /// with such a map in which \c k is assigned to \c s, \c -k is
kpeter@806
   479
    /// assigned to \c t and all other nodes have zero supply value.
kpeter@806
   480
    ///
kpeter@806
   481
    /// \param s The source node.
kpeter@806
   482
    /// \param t The target node.
kpeter@806
   483
    /// \param k The required amount of flow from node \c s to node \c t
kpeter@806
   484
    /// (i.e. the supply of \c s and the demand of \c t).
kpeter@806
   485
    ///
kpeter@806
   486
    /// \return <tt>(*this)</tt>
kpeter@806
   487
    CapacityScaling& stSupply(const Node& s, const Node& t, Value k) {
kpeter@806
   488
      for (int i = 0; i != _node_num; ++i) {
kpeter@806
   489
        _supply[i] = 0;
kpeter@806
   490
      }
kpeter@806
   491
      _supply[_node_id[s]] =  k;
kpeter@806
   492
      _supply[_node_id[t]] = -k;
kpeter@806
   493
      return *this;
kpeter@806
   494
    }
kpeter@806
   495
    
kpeter@806
   496
    /// @}
kpeter@806
   497
kpeter@805
   498
    /// \name Execution control
kpeter@807
   499
    /// The algorithm can be executed using \ref run().
kpeter@805
   500
kpeter@805
   501
    /// @{
kpeter@805
   502
kpeter@805
   503
    /// \brief Run the algorithm.
kpeter@805
   504
    ///
kpeter@805
   505
    /// This function runs the algorithm.
kpeter@806
   506
    /// The paramters can be specified using functions \ref lowerMap(),
kpeter@806
   507
    /// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@806
   508
    /// For example,
kpeter@806
   509
    /// \code
kpeter@806
   510
    ///   CapacityScaling<ListDigraph> cs(graph);
kpeter@806
   511
    ///   cs.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@806
   512
    ///     .supplyMap(sup).run();
kpeter@806
   513
    /// \endcode
kpeter@806
   514
    ///
kpeter@806
   515
    /// This function can be called more than once. All the parameters
kpeter@806
   516
    /// that have been given are kept for the next call, unless
kpeter@806
   517
    /// \ref reset() is called, thus only the modified parameters
kpeter@806
   518
    /// have to be set again. See \ref reset() for examples.
kpeter@812
   519
    /// However, the underlying digraph must not be modified after this
kpeter@810
   520
    /// class have been constructed, since it copies and extends the graph.
kpeter@805
   521
    ///
kpeter@810
   522
    /// \param factor The capacity scaling factor. It must be larger than
kpeter@810
   523
    /// one to use scaling. If it is less or equal to one, then scaling
kpeter@810
   524
    /// will be disabled.
kpeter@805
   525
    ///
kpeter@806
   526
    /// \return \c INFEASIBLE if no feasible flow exists,
kpeter@806
   527
    /// \n \c OPTIMAL if the problem has optimal solution
kpeter@806
   528
    /// (i.e. it is feasible and bounded), and the algorithm has found
kpeter@806
   529
    /// optimal flow and node potentials (primal and dual solutions),
kpeter@806
   530
    /// \n \c UNBOUNDED if the digraph contains an arc of negative cost
kpeter@806
   531
    /// and infinite upper bound. It means that the objective function
kpeter@812
   532
    /// is unbounded on that arc, however, note that it could actually be
kpeter@806
   533
    /// bounded over the feasible flows, but this algroithm cannot handle
kpeter@806
   534
    /// these cases.
kpeter@806
   535
    ///
kpeter@806
   536
    /// \see ProblemType
kpeter@810
   537
    ProblemType run(int factor = 4) {
kpeter@810
   538
      _factor = factor;
kpeter@810
   539
      ProblemType pt = init();
kpeter@806
   540
      if (pt != OPTIMAL) return pt;
kpeter@806
   541
      return start();
kpeter@806
   542
    }
kpeter@806
   543
kpeter@806
   544
    /// \brief Reset all the parameters that have been given before.
kpeter@806
   545
    ///
kpeter@806
   546
    /// This function resets all the paramaters that have been given
kpeter@806
   547
    /// before using functions \ref lowerMap(), \ref upperMap(),
kpeter@806
   548
    /// \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@806
   549
    ///
kpeter@806
   550
    /// It is useful for multiple run() calls. If this function is not
kpeter@806
   551
    /// used, all the parameters given before are kept for the next
kpeter@806
   552
    /// \ref run() call.
kpeter@810
   553
    /// However, the underlying digraph must not be modified after this
kpeter@806
   554
    /// class have been constructed, since it copies and extends the graph.
kpeter@806
   555
    ///
kpeter@806
   556
    /// For example,
kpeter@806
   557
    /// \code
kpeter@806
   558
    ///   CapacityScaling<ListDigraph> cs(graph);
kpeter@806
   559
    ///
kpeter@806
   560
    ///   // First run
kpeter@806
   561
    ///   cs.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@806
   562
    ///     .supplyMap(sup).run();
kpeter@806
   563
    ///
kpeter@806
   564
    ///   // Run again with modified cost map (reset() is not called,
kpeter@806
   565
    ///   // so only the cost map have to be set again)
kpeter@806
   566
    ///   cost[e] += 100;
kpeter@806
   567
    ///   cs.costMap(cost).run();
kpeter@806
   568
    ///
kpeter@806
   569
    ///   // Run again from scratch using reset()
kpeter@806
   570
    ///   // (the lower bounds will be set to zero on all arcs)
kpeter@806
   571
    ///   cs.reset();
kpeter@806
   572
    ///   cs.upperMap(capacity).costMap(cost)
kpeter@806
   573
    ///     .supplyMap(sup).run();
kpeter@806
   574
    /// \endcode
kpeter@806
   575
    ///
kpeter@806
   576
    /// \return <tt>(*this)</tt>
kpeter@806
   577
    CapacityScaling& reset() {
kpeter@806
   578
      for (int i = 0; i != _node_num; ++i) {
kpeter@806
   579
        _supply[i] = 0;
kpeter@806
   580
      }
kpeter@806
   581
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@806
   582
        _lower[j] = 0;
kpeter@806
   583
        _upper[j] = INF;
kpeter@806
   584
        _cost[j] = _forward[j] ? 1 : -1;
kpeter@806
   585
      }
kpeter@806
   586
      _have_lower = false;
kpeter@806
   587
      return *this;
kpeter@805
   588
    }
kpeter@805
   589
kpeter@805
   590
    /// @}
kpeter@805
   591
kpeter@805
   592
    /// \name Query Functions
kpeter@805
   593
    /// The results of the algorithm can be obtained using these
kpeter@805
   594
    /// functions.\n
kpeter@806
   595
    /// The \ref run() function must be called before using them.
kpeter@805
   596
kpeter@805
   597
    /// @{
kpeter@805
   598
kpeter@806
   599
    /// \brief Return the total cost of the found flow.
kpeter@805
   600
    ///
kpeter@806
   601
    /// This function returns the total cost of the found flow.
kpeter@806
   602
    /// Its complexity is O(e).
kpeter@806
   603
    ///
kpeter@806
   604
    /// \note The return type of the function can be specified as a
kpeter@806
   605
    /// template parameter. For example,
kpeter@806
   606
    /// \code
kpeter@806
   607
    ///   cs.totalCost<double>();
kpeter@806
   608
    /// \endcode
kpeter@806
   609
    /// It is useful if the total cost cannot be stored in the \c Cost
kpeter@806
   610
    /// type of the algorithm, which is the default return type of the
kpeter@806
   611
    /// function.
kpeter@805
   612
    ///
kpeter@805
   613
    /// \pre \ref run() must be called before using this function.
kpeter@806
   614
    template <typename Number>
kpeter@806
   615
    Number totalCost() const {
kpeter@806
   616
      Number c = 0;
kpeter@806
   617
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   618
        int i = _arc_idb[a];
kpeter@806
   619
        c += static_cast<Number>(_res_cap[i]) *
kpeter@806
   620
             (-static_cast<Number>(_cost[i]));
kpeter@806
   621
      }
kpeter@806
   622
      return c;
kpeter@805
   623
    }
kpeter@805
   624
kpeter@806
   625
#ifndef DOXYGEN
kpeter@806
   626
    Cost totalCost() const {
kpeter@806
   627
      return totalCost<Cost>();
kpeter@805
   628
    }
kpeter@806
   629
#endif
kpeter@805
   630
kpeter@805
   631
    /// \brief Return the flow on the given arc.
kpeter@805
   632
    ///
kpeter@806
   633
    /// This function returns the flow on the given arc.
kpeter@805
   634
    ///
kpeter@805
   635
    /// \pre \ref run() must be called before using this function.
kpeter@806
   636
    Value flow(const Arc& a) const {
kpeter@806
   637
      return _res_cap[_arc_idb[a]];
kpeter@805
   638
    }
kpeter@805
   639
kpeter@806
   640
    /// \brief Return the flow map (the primal solution).
kpeter@805
   641
    ///
kpeter@806
   642
    /// This function copies the flow value on each arc into the given
kpeter@806
   643
    /// map. The \c Value type of the algorithm must be convertible to
kpeter@806
   644
    /// the \c Value type of the map.
kpeter@805
   645
    ///
kpeter@805
   646
    /// \pre \ref run() must be called before using this function.
kpeter@806
   647
    template <typename FlowMap>
kpeter@806
   648
    void flowMap(FlowMap &map) const {
kpeter@806
   649
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@806
   650
        map.set(a, _res_cap[_arc_idb[a]]);
kpeter@806
   651
      }
kpeter@805
   652
    }
kpeter@805
   653
kpeter@806
   654
    /// \brief Return the potential (dual value) of the given node.
kpeter@805
   655
    ///
kpeter@806
   656
    /// This function returns the potential (dual value) of the
kpeter@806
   657
    /// given node.
kpeter@805
   658
    ///
kpeter@805
   659
    /// \pre \ref run() must be called before using this function.
kpeter@806
   660
    Cost potential(const Node& n) const {
kpeter@806
   661
      return _pi[_node_id[n]];
kpeter@806
   662
    }
kpeter@806
   663
kpeter@806
   664
    /// \brief Return the potential map (the dual solution).
kpeter@806
   665
    ///
kpeter@806
   666
    /// This function copies the potential (dual value) of each node
kpeter@806
   667
    /// into the given map.
kpeter@806
   668
    /// The \c Cost type of the algorithm must be convertible to the
kpeter@806
   669
    /// \c Value type of the map.
kpeter@806
   670
    ///
kpeter@806
   671
    /// \pre \ref run() must be called before using this function.
kpeter@806
   672
    template <typename PotentialMap>
kpeter@806
   673
    void potentialMap(PotentialMap &map) const {
kpeter@806
   674
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@806
   675
        map.set(n, _pi[_node_id[n]]);
kpeter@806
   676
      }
kpeter@805
   677
    }
kpeter@805
   678
kpeter@805
   679
    /// @}
kpeter@805
   680
kpeter@805
   681
  private:
kpeter@805
   682
kpeter@806
   683
    // Initialize the algorithm
kpeter@810
   684
    ProblemType init() {
kpeter@821
   685
      if (_node_num <= 1) return INFEASIBLE;
kpeter@805
   686
kpeter@806
   687
      // Check the sum of supply values
kpeter@806
   688
      _sum_supply = 0;
kpeter@806
   689
      for (int i = 0; i != _root; ++i) {
kpeter@806
   690
        _sum_supply += _supply[i];
kpeter@805
   691
      }
kpeter@806
   692
      if (_sum_supply > 0) return INFEASIBLE;
kpeter@806
   693
      
kpeter@811
   694
      // Initialize vectors
kpeter@806
   695
      for (int i = 0; i != _root; ++i) {
kpeter@806
   696
        _pi[i] = 0;
kpeter@806
   697
        _excess[i] = _supply[i];
kpeter@805
   698
      }
kpeter@805
   699
kpeter@806
   700
      // Remove non-zero lower bounds
kpeter@811
   701
      const Value MAX = std::numeric_limits<Value>::max();
kpeter@811
   702
      int last_out;
kpeter@806
   703
      if (_have_lower) {
kpeter@806
   704
        for (int i = 0; i != _root; ++i) {
kpeter@811
   705
          last_out = _first_out[i+1];
kpeter@811
   706
          for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@806
   707
            if (_forward[j]) {
kpeter@806
   708
              Value c = _lower[j];
kpeter@806
   709
              if (c >= 0) {
kpeter@811
   710
                _res_cap[j] = _upper[j] < MAX ? _upper[j] - c : INF;
kpeter@806
   711
              } else {
kpeter@811
   712
                _res_cap[j] = _upper[j] < MAX + c ? _upper[j] - c : INF;
kpeter@806
   713
              }
kpeter@806
   714
              _excess[i] -= c;
kpeter@806
   715
              _excess[_target[j]] += c;
kpeter@806
   716
            } else {
kpeter@806
   717
              _res_cap[j] = 0;
kpeter@806
   718
            }
kpeter@806
   719
          }
kpeter@806
   720
        }
kpeter@806
   721
      } else {
kpeter@806
   722
        for (int j = 0; j != _res_arc_num; ++j) {
kpeter@806
   723
          _res_cap[j] = _forward[j] ? _upper[j] : 0;
kpeter@806
   724
        }
kpeter@806
   725
      }
kpeter@805
   726
kpeter@806
   727
      // Handle negative costs
kpeter@811
   728
      for (int i = 0; i != _root; ++i) {
kpeter@811
   729
        last_out = _first_out[i+1] - 1;
kpeter@811
   730
        for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@811
   731
          Value rc = _res_cap[j];
kpeter@811
   732
          if (_cost[j] < 0 && rc > 0) {
kpeter@811
   733
            if (rc >= MAX) return UNBOUNDED;
kpeter@811
   734
            _excess[i] -= rc;
kpeter@811
   735
            _excess[_target[j]] += rc;
kpeter@811
   736
            _res_cap[j] = 0;
kpeter@811
   737
            _res_cap[_reverse[j]] += rc;
kpeter@806
   738
          }
kpeter@806
   739
        }
kpeter@806
   740
      }
kpeter@806
   741
      
kpeter@806
   742
      // Handle GEQ supply type
kpeter@806
   743
      if (_sum_supply < 0) {
kpeter@806
   744
        _pi[_root] = 0;
kpeter@806
   745
        _excess[_root] = -_sum_supply;
kpeter@806
   746
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@811
   747
          int ra = _reverse[a];
kpeter@811
   748
          _res_cap[a] = -_sum_supply + 1;
kpeter@811
   749
          _res_cap[ra] = 0;
kpeter@806
   750
          _cost[a] = 0;
kpeter@811
   751
          _cost[ra] = 0;
kpeter@806
   752
        }
kpeter@806
   753
      } else {
kpeter@806
   754
        _pi[_root] = 0;
kpeter@806
   755
        _excess[_root] = 0;
kpeter@806
   756
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@811
   757
          int ra = _reverse[a];
kpeter@806
   758
          _res_cap[a] = 1;
kpeter@811
   759
          _res_cap[ra] = 0;
kpeter@806
   760
          _cost[a] = 0;
kpeter@811
   761
          _cost[ra] = 0;
kpeter@806
   762
        }
kpeter@806
   763
      }
kpeter@806
   764
kpeter@806
   765
      // Initialize delta value
kpeter@810
   766
      if (_factor > 1) {
kpeter@805
   767
        // With scaling
kpeter@806
   768
        Value max_sup = 0, max_dem = 0;
kpeter@806
   769
        for (int i = 0; i != _node_num; ++i) {
kpeter@811
   770
          Value ex = _excess[i];
kpeter@811
   771
          if ( ex > max_sup) max_sup =  ex;
kpeter@811
   772
          if (-ex > max_dem) max_dem = -ex;
kpeter@805
   773
        }
kpeter@806
   774
        Value max_cap = 0;
kpeter@806
   775
        for (int j = 0; j != _res_arc_num; ++j) {
kpeter@806
   776
          if (_res_cap[j] > max_cap) max_cap = _res_cap[j];
kpeter@805
   777
        }
kpeter@805
   778
        max_sup = std::min(std::min(max_sup, max_dem), max_cap);
kpeter@810
   779
        for (_delta = 1; 2 * _delta <= max_sup; _delta *= 2) ;
kpeter@805
   780
      } else {
kpeter@805
   781
        // Without scaling
kpeter@805
   782
        _delta = 1;
kpeter@805
   783
      }
kpeter@805
   784
kpeter@806
   785
      return OPTIMAL;
kpeter@805
   786
    }
kpeter@805
   787
kpeter@806
   788
    ProblemType start() {
kpeter@806
   789
      // Execute the algorithm
kpeter@806
   790
      ProblemType pt;
kpeter@805
   791
      if (_delta > 1)
kpeter@806
   792
        pt = startWithScaling();
kpeter@805
   793
      else
kpeter@806
   794
        pt = startWithoutScaling();
kpeter@806
   795
kpeter@806
   796
      // Handle non-zero lower bounds
kpeter@806
   797
      if (_have_lower) {
kpeter@811
   798
        int limit = _first_out[_root];
kpeter@811
   799
        for (int j = 0; j != limit; ++j) {
kpeter@806
   800
          if (!_forward[j]) _res_cap[j] += _lower[j];
kpeter@806
   801
        }
kpeter@806
   802
      }
kpeter@806
   803
kpeter@806
   804
      // Shift potentials if necessary
kpeter@806
   805
      Cost pr = _pi[_root];
kpeter@806
   806
      if (_sum_supply < 0 || pr > 0) {
kpeter@806
   807
        for (int i = 0; i != _node_num; ++i) {
kpeter@806
   808
          _pi[i] -= pr;
kpeter@806
   809
        }        
kpeter@806
   810
      }
kpeter@806
   811
      
kpeter@806
   812
      return pt;
kpeter@805
   813
    }
kpeter@805
   814
kpeter@806
   815
    // Execute the capacity scaling algorithm
kpeter@806
   816
    ProblemType startWithScaling() {
kpeter@807
   817
      // Perform capacity scaling phases
kpeter@806
   818
      int s, t;
kpeter@806
   819
      ResidualDijkstra _dijkstra(*this);
kpeter@805
   820
      while (true) {
kpeter@806
   821
        // Saturate all arcs not satisfying the optimality condition
kpeter@811
   822
        int last_out;
kpeter@806
   823
        for (int u = 0; u != _node_num; ++u) {
kpeter@811
   824
          last_out = _sum_supply < 0 ?
kpeter@811
   825
            _first_out[u+1] : _first_out[u+1] - 1;
kpeter@811
   826
          for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@806
   827
            int v = _target[a];
kpeter@806
   828
            Cost c = _cost[a] + _pi[u] - _pi[v];
kpeter@806
   829
            Value rc = _res_cap[a];
kpeter@806
   830
            if (c < 0 && rc >= _delta) {
kpeter@806
   831
              _excess[u] -= rc;
kpeter@806
   832
              _excess[v] += rc;
kpeter@806
   833
              _res_cap[a] = 0;
kpeter@806
   834
              _res_cap[_reverse[a]] += rc;
kpeter@806
   835
            }
kpeter@805
   836
          }
kpeter@805
   837
        }
kpeter@805
   838
kpeter@806
   839
        // Find excess nodes and deficit nodes
kpeter@805
   840
        _excess_nodes.clear();
kpeter@805
   841
        _deficit_nodes.clear();
kpeter@806
   842
        for (int u = 0; u != _node_num; ++u) {
kpeter@811
   843
          Value ex = _excess[u];
kpeter@811
   844
          if (ex >=  _delta) _excess_nodes.push_back(u);
kpeter@811
   845
          if (ex <= -_delta) _deficit_nodes.push_back(u);
kpeter@805
   846
        }
kpeter@805
   847
        int next_node = 0, next_def_node = 0;
kpeter@805
   848
kpeter@806
   849
        // Find augmenting shortest paths
kpeter@805
   850
        while (next_node < int(_excess_nodes.size())) {
kpeter@806
   851
          // Check deficit nodes
kpeter@805
   852
          if (_delta > 1) {
kpeter@805
   853
            bool delta_deficit = false;
kpeter@805
   854
            for ( ; next_def_node < int(_deficit_nodes.size());
kpeter@805
   855
                    ++next_def_node ) {
kpeter@805
   856
              if (_excess[_deficit_nodes[next_def_node]] <= -_delta) {
kpeter@805
   857
                delta_deficit = true;
kpeter@805
   858
                break;
kpeter@805
   859
              }
kpeter@805
   860
            }
kpeter@805
   861
            if (!delta_deficit) break;
kpeter@805
   862
          }
kpeter@805
   863
kpeter@806
   864
          // Run Dijkstra in the residual network
kpeter@805
   865
          s = _excess_nodes[next_node];
kpeter@806
   866
          if ((t = _dijkstra.run(s, _delta)) == -1) {
kpeter@805
   867
            if (_delta > 1) {
kpeter@805
   868
              ++next_node;
kpeter@805
   869
              continue;
kpeter@805
   870
            }
kpeter@806
   871
            return INFEASIBLE;
kpeter@805
   872
          }
kpeter@805
   873
kpeter@806
   874
          // Augment along a shortest path from s to t
kpeter@806
   875
          Value d = std::min(_excess[s], -_excess[t]);
kpeter@806
   876
          int u = t;
kpeter@806
   877
          int a;
kpeter@805
   878
          if (d > _delta) {
kpeter@806
   879
            while ((a = _pred[u]) != -1) {
kpeter@806
   880
              if (_res_cap[a] < d) d = _res_cap[a];
kpeter@806
   881
              u = _source[a];
kpeter@805
   882
            }
kpeter@805
   883
          }
kpeter@805
   884
          u = t;
kpeter@806
   885
          while ((a = _pred[u]) != -1) {
kpeter@806
   886
            _res_cap[a] -= d;
kpeter@806
   887
            _res_cap[_reverse[a]] += d;
kpeter@806
   888
            u = _source[a];
kpeter@805
   889
          }
kpeter@805
   890
          _excess[s] -= d;
kpeter@805
   891
          _excess[t] += d;
kpeter@805
   892
kpeter@805
   893
          if (_excess[s] < _delta) ++next_node;
kpeter@805
   894
        }
kpeter@805
   895
kpeter@805
   896
        if (_delta == 1) break;
kpeter@810
   897
        _delta = _delta <= _factor ? 1 : _delta / _factor;
kpeter@805
   898
      }
kpeter@805
   899
kpeter@806
   900
      return OPTIMAL;
kpeter@805
   901
    }
kpeter@805
   902
kpeter@806
   903
    // Execute the successive shortest path algorithm
kpeter@806
   904
    ProblemType startWithoutScaling() {
kpeter@806
   905
      // Find excess nodes
kpeter@806
   906
      _excess_nodes.clear();
kpeter@806
   907
      for (int i = 0; i != _node_num; ++i) {
kpeter@806
   908
        if (_excess[i] > 0) _excess_nodes.push_back(i);
kpeter@806
   909
      }
kpeter@806
   910
      if (_excess_nodes.size() == 0) return OPTIMAL;
kpeter@805
   911
      int next_node = 0;
kpeter@805
   912
kpeter@806
   913
      // Find shortest paths
kpeter@806
   914
      int s, t;
kpeter@806
   915
      ResidualDijkstra _dijkstra(*this);
kpeter@805
   916
      while ( _excess[_excess_nodes[next_node]] > 0 ||
kpeter@805
   917
              ++next_node < int(_excess_nodes.size()) )
kpeter@805
   918
      {
kpeter@806
   919
        // Run Dijkstra in the residual network
kpeter@805
   920
        s = _excess_nodes[next_node];
kpeter@806
   921
        if ((t = _dijkstra.run(s)) == -1) return INFEASIBLE;
kpeter@805
   922
kpeter@806
   923
        // Augment along a shortest path from s to t
kpeter@806
   924
        Value d = std::min(_excess[s], -_excess[t]);
kpeter@806
   925
        int u = t;
kpeter@806
   926
        int a;
kpeter@805
   927
        if (d > 1) {
kpeter@806
   928
          while ((a = _pred[u]) != -1) {
kpeter@806
   929
            if (_res_cap[a] < d) d = _res_cap[a];
kpeter@806
   930
            u = _source[a];
kpeter@805
   931
          }
kpeter@805
   932
        }
kpeter@805
   933
        u = t;
kpeter@806
   934
        while ((a = _pred[u]) != -1) {
kpeter@806
   935
          _res_cap[a] -= d;
kpeter@806
   936
          _res_cap[_reverse[a]] += d;
kpeter@806
   937
          u = _source[a];
kpeter@805
   938
        }
kpeter@805
   939
        _excess[s] -= d;
kpeter@805
   940
        _excess[t] += d;
kpeter@805
   941
      }
kpeter@805
   942
kpeter@806
   943
      return OPTIMAL;
kpeter@805
   944
    }
kpeter@805
   945
kpeter@805
   946
  }; //class CapacityScaling
kpeter@805
   947
kpeter@805
   948
  ///@}
kpeter@805
   949
kpeter@805
   950
} //namespace lemon
kpeter@805
   951
kpeter@805
   952
#endif //LEMON_CAPACITY_SCALING_H