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