lemon/capacity_scaling.h
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 10 Feb 2010 19:05:20 +0100
changeset 830 75c97c3786d6
parent 821 072ec8120958
child 831 cc9e0c15d747
permissions -rw-r--r--
Handle graph changes in the MCF algorithms (#327)

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