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