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