lemon/cost_scaling.h
author Peter Kovacs <kpeter@inf.elte.hu>
Sun, 09 Jan 2011 16:51:14 +0100
changeset 919 e0cef67fe565
parent 877 141f9c0db4a3
child 922 9312d6c89d02
permissions -rw-r--r--
Various doc improvements (#406)
alpar@877
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
kpeter@808
     2
 *
alpar@877
     3
 * This file is a part of LEMON, a generic C++ optimization library.
kpeter@808
     4
 *
alpar@877
     5
 * Copyright (C) 2003-2010
kpeter@808
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@808
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@808
     8
 *
kpeter@808
     9
 * Permission to use, modify and distribute this software is granted
kpeter@808
    10
 * provided that this copyright notice appears in all copies. For
kpeter@808
    11
 * precise terms see the accompanying LICENSE file.
kpeter@808
    12
 *
kpeter@808
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@808
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@808
    15
 * purpose.
kpeter@808
    16
 *
kpeter@808
    17
 */
kpeter@808
    18
kpeter@808
    19
#ifndef LEMON_COST_SCALING_H
kpeter@808
    20
#define LEMON_COST_SCALING_H
kpeter@808
    21
kpeter@808
    22
/// \ingroup min_cost_flow_algs
kpeter@808
    23
/// \file
kpeter@808
    24
/// \brief Cost scaling algorithm for finding a minimum cost flow.
kpeter@808
    25
kpeter@808
    26
#include <vector>
kpeter@808
    27
#include <deque>
kpeter@808
    28
#include <limits>
kpeter@808
    29
kpeter@808
    30
#include <lemon/core.h>
kpeter@808
    31
#include <lemon/maps.h>
kpeter@808
    32
#include <lemon/math.h>
kpeter@809
    33
#include <lemon/static_graph.h>
kpeter@808
    34
#include <lemon/circulation.h>
kpeter@808
    35
#include <lemon/bellman_ford.h>
kpeter@808
    36
kpeter@808
    37
namespace lemon {
kpeter@808
    38
kpeter@809
    39
  /// \brief Default traits class of CostScaling algorithm.
kpeter@809
    40
  ///
kpeter@809
    41
  /// Default traits class of CostScaling algorithm.
kpeter@809
    42
  /// \tparam GR Digraph type.
kpeter@812
    43
  /// \tparam V The number type used for flow amounts, capacity bounds
kpeter@809
    44
  /// and supply values. By default it is \c int.
kpeter@812
    45
  /// \tparam C The number type used for costs and potentials.
kpeter@809
    46
  /// By default it is the same as \c V.
kpeter@809
    47
#ifdef DOXYGEN
kpeter@809
    48
  template <typename GR, typename V = int, typename C = V>
kpeter@809
    49
#else
kpeter@809
    50
  template < typename GR, typename V = int, typename C = V,
kpeter@809
    51
             bool integer = std::numeric_limits<C>::is_integer >
kpeter@809
    52
#endif
kpeter@809
    53
  struct CostScalingDefaultTraits
kpeter@809
    54
  {
kpeter@809
    55
    /// The type of the digraph
kpeter@809
    56
    typedef GR Digraph;
kpeter@809
    57
    /// The type of the flow amounts, capacity bounds and supply values
kpeter@809
    58
    typedef V Value;
kpeter@809
    59
    /// The type of the arc costs
kpeter@809
    60
    typedef C Cost;
kpeter@809
    61
kpeter@809
    62
    /// \brief The large cost type used for internal computations
kpeter@809
    63
    ///
kpeter@809
    64
    /// The large cost type used for internal computations.
kpeter@809
    65
    /// It is \c long \c long if the \c Cost type is integer,
kpeter@809
    66
    /// otherwise it is \c double.
kpeter@809
    67
    /// \c Cost must be convertible to \c LargeCost.
kpeter@809
    68
    typedef double LargeCost;
kpeter@809
    69
  };
kpeter@809
    70
kpeter@809
    71
  // Default traits class for integer cost types
kpeter@809
    72
  template <typename GR, typename V, typename C>
kpeter@809
    73
  struct CostScalingDefaultTraits<GR, V, C, true>
kpeter@809
    74
  {
kpeter@809
    75
    typedef GR Digraph;
kpeter@809
    76
    typedef V Value;
kpeter@809
    77
    typedef C Cost;
kpeter@809
    78
#ifdef LEMON_HAVE_LONG_LONG
kpeter@809
    79
    typedef long long LargeCost;
kpeter@809
    80
#else
kpeter@809
    81
    typedef long LargeCost;
kpeter@809
    82
#endif
kpeter@809
    83
  };
kpeter@809
    84
kpeter@809
    85
kpeter@808
    86
  /// \addtogroup min_cost_flow_algs
kpeter@808
    87
  /// @{
kpeter@808
    88
kpeter@809
    89
  /// \brief Implementation of the Cost Scaling algorithm for
kpeter@809
    90
  /// finding a \ref min_cost_flow "minimum cost flow".
kpeter@808
    91
  ///
kpeter@809
    92
  /// \ref CostScaling implements a cost scaling algorithm that performs
kpeter@813
    93
  /// push/augment and relabel operations for finding a \ref min_cost_flow
kpeter@813
    94
  /// "minimum cost flow" \ref amo93networkflows, \ref goldberg90approximation,
alpar@877
    95
  /// \ref goldberg97efficient, \ref bunnagel98efficient.
kpeter@813
    96
  /// It is a highly efficient primal-dual solution method, which
kpeter@809
    97
  /// can be viewed as the generalization of the \ref Preflow
kpeter@809
    98
  /// "preflow push-relabel" algorithm for the maximum flow problem.
kpeter@808
    99
  ///
kpeter@919
   100
  /// In general, \ref NetworkSimplex and \ref CostScaling are the fastest
kpeter@919
   101
  /// implementations available in LEMON for this problem.
kpeter@919
   102
  ///
kpeter@809
   103
  /// Most of the parameters of the problem (except for the digraph)
kpeter@809
   104
  /// can be given using separate functions, and the algorithm can be
kpeter@809
   105
  /// executed using the \ref run() function. If some parameters are not
kpeter@809
   106
  /// specified, then default values will be used.
kpeter@808
   107
  ///
kpeter@809
   108
  /// \tparam GR The digraph type the algorithm runs on.
kpeter@812
   109
  /// \tparam V The number type used for flow amounts, capacity bounds
kpeter@825
   110
  /// and supply values in the algorithm. By default, it is \c int.
kpeter@812
   111
  /// \tparam C The number type used for costs and potentials in the
kpeter@825
   112
  /// algorithm. By default, it is the same as \c V.
kpeter@825
   113
  /// \tparam TR The traits class that defines various types used by the
kpeter@825
   114
  /// algorithm. By default, it is \ref CostScalingDefaultTraits
kpeter@825
   115
  /// "CostScalingDefaultTraits<GR, V, C>".
kpeter@825
   116
  /// In most cases, this parameter should not be set directly,
kpeter@825
   117
  /// consider to use the named template parameters instead.
kpeter@808
   118
  ///
kpeter@812
   119
  /// \warning Both number types must be signed and all input data must
kpeter@809
   120
  /// be integer.
kpeter@919
   121
  /// \warning This algorithm does not support negative costs for
kpeter@919
   122
  /// arcs having infinite upper bound.
kpeter@810
   123
  ///
kpeter@810
   124
  /// \note %CostScaling provides three different internal methods,
kpeter@810
   125
  /// from which the most efficient one is used by default.
kpeter@810
   126
  /// For more information, see \ref Method.
kpeter@809
   127
#ifdef DOXYGEN
kpeter@809
   128
  template <typename GR, typename V, typename C, typename TR>
kpeter@809
   129
#else
kpeter@809
   130
  template < typename GR, typename V = int, typename C = V,
kpeter@809
   131
             typename TR = CostScalingDefaultTraits<GR, V, C> >
kpeter@809
   132
#endif
kpeter@808
   133
  class CostScaling
kpeter@808
   134
  {
kpeter@809
   135
  public:
kpeter@808
   136
kpeter@809
   137
    /// The type of the digraph
kpeter@809
   138
    typedef typename TR::Digraph Digraph;
kpeter@809
   139
    /// The type of the flow amounts, capacity bounds and supply values
kpeter@809
   140
    typedef typename TR::Value Value;
kpeter@809
   141
    /// The type of the arc costs
kpeter@809
   142
    typedef typename TR::Cost Cost;
kpeter@808
   143
kpeter@809
   144
    /// \brief The large cost type
kpeter@809
   145
    ///
kpeter@809
   146
    /// The large cost type used for internal computations.
kpeter@825
   147
    /// By default, it is \c long \c long if the \c Cost type is integer,
kpeter@809
   148
    /// otherwise it is \c double.
kpeter@809
   149
    typedef typename TR::LargeCost LargeCost;
kpeter@808
   150
kpeter@809
   151
    /// The \ref CostScalingDefaultTraits "traits class" of the algorithm
kpeter@809
   152
    typedef TR Traits;
kpeter@808
   153
kpeter@808
   154
  public:
kpeter@808
   155
kpeter@809
   156
    /// \brief Problem type constants for the \c run() function.
kpeter@809
   157
    ///
kpeter@809
   158
    /// Enum type containing the problem type constants that can be
kpeter@809
   159
    /// returned by the \ref run() function of the algorithm.
kpeter@809
   160
    enum ProblemType {
kpeter@809
   161
      /// The problem has no feasible solution (flow).
kpeter@809
   162
      INFEASIBLE,
kpeter@809
   163
      /// The problem has optimal solution (i.e. it is feasible and
kpeter@809
   164
      /// bounded), and the algorithm has found optimal flow and node
kpeter@809
   165
      /// potentials (primal and dual solutions).
kpeter@809
   166
      OPTIMAL,
kpeter@809
   167
      /// The digraph contains an arc of negative cost and infinite
kpeter@809
   168
      /// upper bound. It means that the objective function is unbounded
kpeter@812
   169
      /// on that arc, however, note that it could actually be bounded
kpeter@809
   170
      /// over the feasible flows, but this algroithm cannot handle
kpeter@809
   171
      /// these cases.
kpeter@809
   172
      UNBOUNDED
kpeter@809
   173
    };
kpeter@808
   174
kpeter@810
   175
    /// \brief Constants for selecting the internal method.
kpeter@810
   176
    ///
kpeter@810
   177
    /// Enum type containing constants for selecting the internal method
kpeter@810
   178
    /// for the \ref run() function.
kpeter@810
   179
    ///
kpeter@810
   180
    /// \ref CostScaling provides three internal methods that differ mainly
kpeter@810
   181
    /// in their base operations, which are used in conjunction with the
kpeter@810
   182
    /// relabel operation.
kpeter@810
   183
    /// By default, the so called \ref PARTIAL_AUGMENT
kpeter@919
   184
    /// "Partial Augment-Relabel" method is used, which turned out to be
kpeter@810
   185
    /// the most efficient and the most robust on various test inputs.
kpeter@810
   186
    /// However, the other methods can be selected using the \ref run()
kpeter@810
   187
    /// function with the proper parameter.
kpeter@810
   188
    enum Method {
kpeter@810
   189
      /// Local push operations are used, i.e. flow is moved only on one
kpeter@810
   190
      /// admissible arc at once.
kpeter@810
   191
      PUSH,
kpeter@810
   192
      /// Augment operations are used, i.e. flow is moved on admissible
kpeter@810
   193
      /// paths from a node with excess to a node with deficit.
kpeter@810
   194
      AUGMENT,
alpar@877
   195
      /// Partial augment operations are used, i.e. flow is moved on
kpeter@810
   196
      /// admissible paths started from a node with excess, but the
kpeter@810
   197
      /// lengths of these paths are limited. This method can be viewed
kpeter@810
   198
      /// as a combined version of the previous two operations.
kpeter@810
   199
      PARTIAL_AUGMENT
kpeter@810
   200
    };
kpeter@810
   201
kpeter@808
   202
  private:
kpeter@808
   203
kpeter@809
   204
    TEMPLATE_DIGRAPH_TYPEDEFS(GR);
kpeter@808
   205
kpeter@809
   206
    typedef std::vector<int> IntVector;
kpeter@809
   207
    typedef std::vector<Value> ValueVector;
kpeter@809
   208
    typedef std::vector<Cost> CostVector;
kpeter@809
   209
    typedef std::vector<LargeCost> LargeCostVector;
kpeter@839
   210
    typedef std::vector<char> BoolVector;
kpeter@839
   211
    // Note: vector<char> is used instead of vector<bool> for efficiency reasons
kpeter@808
   212
kpeter@809
   213
  private:
alpar@877
   214
kpeter@809
   215
    template <typename KT, typename VT>
kpeter@820
   216
    class StaticVectorMap {
kpeter@808
   217
    public:
kpeter@809
   218
      typedef KT Key;
kpeter@809
   219
      typedef VT Value;
alpar@877
   220
kpeter@820
   221
      StaticVectorMap(std::vector<Value>& v) : _v(v) {}
alpar@877
   222
kpeter@809
   223
      const Value& operator[](const Key& key) const {
kpeter@809
   224
        return _v[StaticDigraph::id(key)];
kpeter@808
   225
      }
kpeter@808
   226
kpeter@809
   227
      Value& operator[](const Key& key) {
kpeter@809
   228
        return _v[StaticDigraph::id(key)];
kpeter@809
   229
      }
alpar@877
   230
kpeter@809
   231
      void set(const Key& key, const Value& val) {
kpeter@809
   232
        _v[StaticDigraph::id(key)] = val;
kpeter@808
   233
      }
kpeter@808
   234
kpeter@809
   235
    private:
kpeter@809
   236
      std::vector<Value>& _v;
kpeter@809
   237
    };
kpeter@809
   238
kpeter@820
   239
    typedef StaticVectorMap<StaticDigraph::Node, LargeCost> LargeCostNodeMap;
kpeter@820
   240
    typedef StaticVectorMap<StaticDigraph::Arc, LargeCost> LargeCostArcMap;
kpeter@808
   241
kpeter@808
   242
  private:
kpeter@808
   243
kpeter@809
   244
    // Data related to the underlying digraph
kpeter@809
   245
    const GR &_graph;
kpeter@809
   246
    int _node_num;
kpeter@809
   247
    int _arc_num;
kpeter@809
   248
    int _res_node_num;
kpeter@809
   249
    int _res_arc_num;
kpeter@809
   250
    int _root;
kpeter@808
   251
kpeter@809
   252
    // Parameters of the problem
kpeter@809
   253
    bool _have_lower;
kpeter@809
   254
    Value _sum_supply;
kpeter@839
   255
    int _sup_node_num;
kpeter@808
   256
kpeter@809
   257
    // Data structures for storing the digraph
kpeter@809
   258
    IntNodeMap _node_id;
kpeter@809
   259
    IntArcMap _arc_idf;
kpeter@809
   260
    IntArcMap _arc_idb;
kpeter@809
   261
    IntVector _first_out;
kpeter@809
   262
    BoolVector _forward;
kpeter@809
   263
    IntVector _source;
kpeter@809
   264
    IntVector _target;
kpeter@809
   265
    IntVector _reverse;
kpeter@809
   266
kpeter@809
   267
    // Node and arc data
kpeter@809
   268
    ValueVector _lower;
kpeter@809
   269
    ValueVector _upper;
kpeter@809
   270
    CostVector _scost;
kpeter@809
   271
    ValueVector _supply;
kpeter@809
   272
kpeter@809
   273
    ValueVector _res_cap;
kpeter@809
   274
    LargeCostVector _cost;
kpeter@809
   275
    LargeCostVector _pi;
kpeter@809
   276
    ValueVector _excess;
kpeter@809
   277
    IntVector _next_out;
kpeter@809
   278
    std::deque<int> _active_nodes;
kpeter@809
   279
kpeter@809
   280
    // Data for scaling
kpeter@809
   281
    LargeCost _epsilon;
kpeter@808
   282
    int _alpha;
kpeter@808
   283
kpeter@839
   284
    IntVector _buckets;
kpeter@839
   285
    IntVector _bucket_next;
kpeter@839
   286
    IntVector _bucket_prev;
kpeter@839
   287
    IntVector _rank;
kpeter@839
   288
    int _max_rank;
alpar@877
   289
kpeter@809
   290
    // Data for a StaticDigraph structure
kpeter@809
   291
    typedef std::pair<int, int> IntPair;
kpeter@809
   292
    StaticDigraph _sgr;
kpeter@809
   293
    std::vector<IntPair> _arc_vec;
kpeter@809
   294
    std::vector<LargeCost> _cost_vec;
kpeter@809
   295
    LargeCostArcMap _cost_map;
kpeter@809
   296
    LargeCostNodeMap _pi_map;
alpar@877
   297
kpeter@809
   298
  public:
alpar@877
   299
kpeter@809
   300
    /// \brief Constant for infinite upper bounds (capacities).
kpeter@809
   301
    ///
kpeter@809
   302
    /// Constant for infinite upper bounds (capacities).
kpeter@809
   303
    /// It is \c std::numeric_limits<Value>::infinity() if available,
kpeter@809
   304
    /// \c std::numeric_limits<Value>::max() otherwise.
kpeter@809
   305
    const Value INF;
kpeter@809
   306
kpeter@808
   307
  public:
kpeter@808
   308
kpeter@809
   309
    /// \name Named Template Parameters
kpeter@809
   310
    /// @{
kpeter@809
   311
kpeter@809
   312
    template <typename T>
kpeter@809
   313
    struct SetLargeCostTraits : public Traits {
kpeter@809
   314
      typedef T LargeCost;
kpeter@809
   315
    };
kpeter@809
   316
kpeter@809
   317
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@809
   318
    /// \c LargeCost type.
kpeter@808
   319
    ///
kpeter@809
   320
    /// \ref named-templ-param "Named parameter" for setting \c LargeCost
kpeter@809
   321
    /// type, which is used for internal computations in the algorithm.
kpeter@809
   322
    /// \c Cost must be convertible to \c LargeCost.
kpeter@809
   323
    template <typename T>
kpeter@809
   324
    struct SetLargeCost
kpeter@809
   325
      : public CostScaling<GR, V, C, SetLargeCostTraits<T> > {
kpeter@809
   326
      typedef  CostScaling<GR, V, C, SetLargeCostTraits<T> > Create;
kpeter@809
   327
    };
kpeter@809
   328
kpeter@809
   329
    /// @}
kpeter@809
   330
kpeter@863
   331
  protected:
kpeter@863
   332
kpeter@863
   333
    CostScaling() {}
kpeter@863
   334
kpeter@809
   335
  public:
kpeter@809
   336
kpeter@809
   337
    /// \brief Constructor.
kpeter@808
   338
    ///
kpeter@809
   339
    /// The constructor of the class.
kpeter@809
   340
    ///
kpeter@809
   341
    /// \param graph The digraph the algorithm runs on.
kpeter@809
   342
    CostScaling(const GR& graph) :
kpeter@809
   343
      _graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph),
kpeter@809
   344
      _cost_map(_cost_vec), _pi_map(_pi),
kpeter@809
   345
      INF(std::numeric_limits<Value>::has_infinity ?
kpeter@809
   346
          std::numeric_limits<Value>::infinity() :
kpeter@809
   347
          std::numeric_limits<Value>::max())
kpeter@808
   348
    {
kpeter@812
   349
      // Check the number types
kpeter@809
   350
      LEMON_ASSERT(std::numeric_limits<Value>::is_signed,
kpeter@809
   351
        "The flow type of CostScaling must be signed");
kpeter@809
   352
      LEMON_ASSERT(std::numeric_limits<Cost>::is_signed,
kpeter@809
   353
        "The cost type of CostScaling must be signed");
alpar@877
   354
kpeter@830
   355
      // Reset data structures
kpeter@809
   356
      reset();
kpeter@808
   357
    }
kpeter@808
   358
kpeter@809
   359
    /// \name Parameters
kpeter@809
   360
    /// The parameters of the algorithm can be specified using these
kpeter@809
   361
    /// functions.
kpeter@809
   362
kpeter@809
   363
    /// @{
kpeter@809
   364
kpeter@809
   365
    /// \brief Set the lower bounds on the arcs.
kpeter@808
   366
    ///
kpeter@809
   367
    /// This function sets the lower bounds on the arcs.
kpeter@809
   368
    /// If it is not used before calling \ref run(), the lower bounds
kpeter@809
   369
    /// will be set to zero on all arcs.
kpeter@808
   370
    ///
kpeter@809
   371
    /// \param map An arc map storing the lower bounds.
kpeter@809
   372
    /// Its \c Value type must be convertible to the \c Value type
kpeter@809
   373
    /// of the algorithm.
kpeter@809
   374
    ///
kpeter@809
   375
    /// \return <tt>(*this)</tt>
kpeter@809
   376
    template <typename LowerMap>
kpeter@809
   377
    CostScaling& lowerMap(const LowerMap& map) {
kpeter@809
   378
      _have_lower = true;
kpeter@809
   379
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   380
        _lower[_arc_idf[a]] = map[a];
kpeter@809
   381
        _lower[_arc_idb[a]] = map[a];
kpeter@808
   382
      }
kpeter@808
   383
      return *this;
kpeter@808
   384
    }
kpeter@808
   385
kpeter@809
   386
    /// \brief Set the upper bounds (capacities) on the arcs.
kpeter@808
   387
    ///
kpeter@809
   388
    /// This function sets the upper bounds (capacities) on the arcs.
kpeter@809
   389
    /// If it is not used before calling \ref run(), the upper bounds
kpeter@809
   390
    /// will be set to \ref INF on all arcs (i.e. the flow value will be
kpeter@812
   391
    /// unbounded from above).
kpeter@808
   392
    ///
kpeter@809
   393
    /// \param map An arc map storing the upper bounds.
kpeter@809
   394
    /// Its \c Value type must be convertible to the \c Value type
kpeter@809
   395
    /// of the algorithm.
kpeter@809
   396
    ///
kpeter@809
   397
    /// \return <tt>(*this)</tt>
kpeter@809
   398
    template<typename UpperMap>
kpeter@809
   399
    CostScaling& upperMap(const UpperMap& map) {
kpeter@809
   400
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   401
        _upper[_arc_idf[a]] = map[a];
kpeter@808
   402
      }
kpeter@808
   403
      return *this;
kpeter@808
   404
    }
kpeter@808
   405
kpeter@809
   406
    /// \brief Set the costs of the arcs.
kpeter@809
   407
    ///
kpeter@809
   408
    /// This function sets the costs of the arcs.
kpeter@809
   409
    /// If it is not used before calling \ref run(), the costs
kpeter@809
   410
    /// will be set to \c 1 on all arcs.
kpeter@809
   411
    ///
kpeter@809
   412
    /// \param map An arc map storing the costs.
kpeter@809
   413
    /// Its \c Value type must be convertible to the \c Cost type
kpeter@809
   414
    /// of the algorithm.
kpeter@809
   415
    ///
kpeter@809
   416
    /// \return <tt>(*this)</tt>
kpeter@809
   417
    template<typename CostMap>
kpeter@809
   418
    CostScaling& costMap(const CostMap& map) {
kpeter@809
   419
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   420
        _scost[_arc_idf[a]] =  map[a];
kpeter@809
   421
        _scost[_arc_idb[a]] = -map[a];
kpeter@809
   422
      }
kpeter@809
   423
      return *this;
kpeter@809
   424
    }
kpeter@809
   425
kpeter@809
   426
    /// \brief Set the supply values of the nodes.
kpeter@809
   427
    ///
kpeter@809
   428
    /// This function sets the supply values of the nodes.
kpeter@809
   429
    /// If neither this function nor \ref stSupply() is used before
kpeter@809
   430
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@809
   431
    ///
kpeter@809
   432
    /// \param map A node map storing the supply values.
kpeter@809
   433
    /// Its \c Value type must be convertible to the \c Value type
kpeter@809
   434
    /// of the algorithm.
kpeter@809
   435
    ///
kpeter@809
   436
    /// \return <tt>(*this)</tt>
kpeter@809
   437
    template<typename SupplyMap>
kpeter@809
   438
    CostScaling& supplyMap(const SupplyMap& map) {
kpeter@809
   439
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@809
   440
        _supply[_node_id[n]] = map[n];
kpeter@809
   441
      }
kpeter@809
   442
      return *this;
kpeter@809
   443
    }
kpeter@809
   444
kpeter@809
   445
    /// \brief Set single source and target nodes and a supply value.
kpeter@809
   446
    ///
kpeter@809
   447
    /// This function sets a single source node and a single target node
kpeter@809
   448
    /// and the required flow value.
kpeter@809
   449
    /// If neither this function nor \ref supplyMap() is used before
kpeter@809
   450
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@809
   451
    ///
kpeter@809
   452
    /// Using this function has the same effect as using \ref supplyMap()
kpeter@919
   453
    /// with a map in which \c k is assigned to \c s, \c -k is
kpeter@809
   454
    /// assigned to \c t and all other nodes have zero supply value.
kpeter@809
   455
    ///
kpeter@809
   456
    /// \param s The source node.
kpeter@809
   457
    /// \param t The target node.
kpeter@809
   458
    /// \param k The required amount of flow from node \c s to node \c t
kpeter@809
   459
    /// (i.e. the supply of \c s and the demand of \c t).
kpeter@809
   460
    ///
kpeter@809
   461
    /// \return <tt>(*this)</tt>
kpeter@809
   462
    CostScaling& stSupply(const Node& s, const Node& t, Value k) {
kpeter@809
   463
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@809
   464
        _supply[i] = 0;
kpeter@809
   465
      }
kpeter@809
   466
      _supply[_node_id[s]] =  k;
kpeter@809
   467
      _supply[_node_id[t]] = -k;
kpeter@809
   468
      return *this;
kpeter@809
   469
    }
alpar@877
   470
kpeter@809
   471
    /// @}
kpeter@809
   472
kpeter@808
   473
    /// \name Execution control
kpeter@809
   474
    /// The algorithm can be executed using \ref run().
kpeter@808
   475
kpeter@808
   476
    /// @{
kpeter@808
   477
kpeter@808
   478
    /// \brief Run the algorithm.
kpeter@808
   479
    ///
kpeter@809
   480
    /// This function runs the algorithm.
kpeter@809
   481
    /// The paramters can be specified using functions \ref lowerMap(),
kpeter@809
   482
    /// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@809
   483
    /// For example,
kpeter@809
   484
    /// \code
kpeter@809
   485
    ///   CostScaling<ListDigraph> cs(graph);
kpeter@809
   486
    ///   cs.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@809
   487
    ///     .supplyMap(sup).run();
kpeter@809
   488
    /// \endcode
kpeter@809
   489
    ///
kpeter@830
   490
    /// This function can be called more than once. All the given parameters
kpeter@830
   491
    /// are kept for the next call, unless \ref resetParams() or \ref reset()
kpeter@830
   492
    /// is used, thus only the modified parameters have to be set again.
kpeter@830
   493
    /// If the underlying digraph was also modified after the construction
kpeter@830
   494
    /// of the class (or the last \ref reset() call), then the \ref reset()
kpeter@830
   495
    /// function must be called.
kpeter@808
   496
    ///
kpeter@810
   497
    /// \param method The internal method that will be used in the
kpeter@810
   498
    /// algorithm. For more information, see \ref Method.
kpeter@810
   499
    /// \param factor The cost scaling factor. It must be larger than one.
kpeter@808
   500
    ///
kpeter@809
   501
    /// \return \c INFEASIBLE if no feasible flow exists,
kpeter@809
   502
    /// \n \c OPTIMAL if the problem has optimal solution
kpeter@809
   503
    /// (i.e. it is feasible and bounded), and the algorithm has found
kpeter@809
   504
    /// optimal flow and node potentials (primal and dual solutions),
kpeter@809
   505
    /// \n \c UNBOUNDED if the digraph contains an arc of negative cost
kpeter@809
   506
    /// and infinite upper bound. It means that the objective function
kpeter@812
   507
    /// is unbounded on that arc, however, note that it could actually be
kpeter@809
   508
    /// bounded over the feasible flows, but this algroithm cannot handle
kpeter@809
   509
    /// these cases.
kpeter@809
   510
    ///
kpeter@810
   511
    /// \see ProblemType, Method
kpeter@830
   512
    /// \see resetParams(), reset()
kpeter@810
   513
    ProblemType run(Method method = PARTIAL_AUGMENT, int factor = 8) {
kpeter@810
   514
      _alpha = factor;
kpeter@809
   515
      ProblemType pt = init();
kpeter@809
   516
      if (pt != OPTIMAL) return pt;
kpeter@810
   517
      start(method);
kpeter@809
   518
      return OPTIMAL;
kpeter@809
   519
    }
kpeter@809
   520
kpeter@809
   521
    /// \brief Reset all the parameters that have been given before.
kpeter@809
   522
    ///
kpeter@809
   523
    /// This function resets all the paramaters that have been given
kpeter@809
   524
    /// before using functions \ref lowerMap(), \ref upperMap(),
kpeter@809
   525
    /// \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@809
   526
    ///
kpeter@830
   527
    /// It is useful for multiple \ref run() calls. Basically, all the given
kpeter@830
   528
    /// parameters are kept for the next \ref run() call, unless
kpeter@830
   529
    /// \ref resetParams() or \ref reset() is used.
kpeter@830
   530
    /// If the underlying digraph was also modified after the construction
kpeter@830
   531
    /// of the class or the last \ref reset() call, then the \ref reset()
kpeter@830
   532
    /// function must be used, otherwise \ref resetParams() is sufficient.
kpeter@809
   533
    ///
kpeter@809
   534
    /// For example,
kpeter@809
   535
    /// \code
kpeter@809
   536
    ///   CostScaling<ListDigraph> cs(graph);
kpeter@809
   537
    ///
kpeter@809
   538
    ///   // First run
kpeter@809
   539
    ///   cs.lowerMap(lower).upperMap(upper).costMap(cost)
kpeter@809
   540
    ///     .supplyMap(sup).run();
kpeter@809
   541
    ///
kpeter@830
   542
    ///   // Run again with modified cost map (resetParams() is not called,
kpeter@809
   543
    ///   // so only the cost map have to be set again)
kpeter@809
   544
    ///   cost[e] += 100;
kpeter@809
   545
    ///   cs.costMap(cost).run();
kpeter@809
   546
    ///
kpeter@830
   547
    ///   // Run again from scratch using resetParams()
kpeter@809
   548
    ///   // (the lower bounds will be set to zero on all arcs)
kpeter@830
   549
    ///   cs.resetParams();
kpeter@809
   550
    ///   cs.upperMap(capacity).costMap(cost)
kpeter@809
   551
    ///     .supplyMap(sup).run();
kpeter@809
   552
    /// \endcode
kpeter@809
   553
    ///
kpeter@809
   554
    /// \return <tt>(*this)</tt>
kpeter@830
   555
    ///
kpeter@830
   556
    /// \see reset(), run()
kpeter@830
   557
    CostScaling& resetParams() {
kpeter@809
   558
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@809
   559
        _supply[i] = 0;
kpeter@808
   560
      }
kpeter@809
   561
      int limit = _first_out[_root];
kpeter@809
   562
      for (int j = 0; j != limit; ++j) {
kpeter@809
   563
        _lower[j] = 0;
kpeter@809
   564
        _upper[j] = INF;
kpeter@809
   565
        _scost[j] = _forward[j] ? 1 : -1;
kpeter@809
   566
      }
kpeter@809
   567
      for (int j = limit; j != _res_arc_num; ++j) {
kpeter@809
   568
        _lower[j] = 0;
kpeter@809
   569
        _upper[j] = INF;
kpeter@809
   570
        _scost[j] = 0;
kpeter@809
   571
        _scost[_reverse[j]] = 0;
alpar@877
   572
      }
kpeter@809
   573
      _have_lower = false;
kpeter@809
   574
      return *this;
kpeter@808
   575
    }
kpeter@808
   576
kpeter@830
   577
    /// \brief Reset all the parameters that have been given before.
kpeter@830
   578
    ///
kpeter@830
   579
    /// This function resets all the paramaters that have been given
kpeter@830
   580
    /// before using functions \ref lowerMap(), \ref upperMap(),
kpeter@830
   581
    /// \ref costMap(), \ref supplyMap(), \ref stSupply().
kpeter@830
   582
    ///
kpeter@830
   583
    /// It is useful for multiple run() calls. If this function is not
kpeter@830
   584
    /// used, all the parameters given before are kept for the next
kpeter@830
   585
    /// \ref run() call.
kpeter@830
   586
    /// However, the underlying digraph must not be modified after this
kpeter@830
   587
    /// class have been constructed, since it copies and extends the graph.
kpeter@830
   588
    /// \return <tt>(*this)</tt>
kpeter@830
   589
    CostScaling& reset() {
kpeter@830
   590
      // Resize vectors
kpeter@830
   591
      _node_num = countNodes(_graph);
kpeter@830
   592
      _arc_num = countArcs(_graph);
kpeter@830
   593
      _res_node_num = _node_num + 1;
kpeter@830
   594
      _res_arc_num = 2 * (_arc_num + _node_num);
kpeter@830
   595
      _root = _node_num;
kpeter@830
   596
kpeter@830
   597
      _first_out.resize(_res_node_num + 1);
kpeter@830
   598
      _forward.resize(_res_arc_num);
kpeter@830
   599
      _source.resize(_res_arc_num);
kpeter@830
   600
      _target.resize(_res_arc_num);
kpeter@830
   601
      _reverse.resize(_res_arc_num);
kpeter@830
   602
kpeter@830
   603
      _lower.resize(_res_arc_num);
kpeter@830
   604
      _upper.resize(_res_arc_num);
kpeter@830
   605
      _scost.resize(_res_arc_num);
kpeter@830
   606
      _supply.resize(_res_node_num);
alpar@877
   607
kpeter@830
   608
      _res_cap.resize(_res_arc_num);
kpeter@830
   609
      _cost.resize(_res_arc_num);
kpeter@830
   610
      _pi.resize(_res_node_num);
kpeter@830
   611
      _excess.resize(_res_node_num);
kpeter@830
   612
      _next_out.resize(_res_node_num);
kpeter@830
   613
kpeter@830
   614
      _arc_vec.reserve(_res_arc_num);
kpeter@830
   615
      _cost_vec.reserve(_res_arc_num);
kpeter@830
   616
kpeter@830
   617
      // Copy the graph
kpeter@830
   618
      int i = 0, j = 0, k = 2 * _arc_num + _node_num;
kpeter@830
   619
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@830
   620
        _node_id[n] = i;
kpeter@830
   621
      }
kpeter@830
   622
      i = 0;
kpeter@830
   623
      for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@830
   624
        _first_out[i] = j;
kpeter@830
   625
        for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@830
   626
          _arc_idf[a] = j;
kpeter@830
   627
          _forward[j] = true;
kpeter@830
   628
          _source[j] = i;
kpeter@830
   629
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@830
   630
        }
kpeter@830
   631
        for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) {
kpeter@830
   632
          _arc_idb[a] = j;
kpeter@830
   633
          _forward[j] = false;
kpeter@830
   634
          _source[j] = i;
kpeter@830
   635
          _target[j] = _node_id[_graph.runningNode(a)];
kpeter@830
   636
        }
kpeter@830
   637
        _forward[j] = false;
kpeter@830
   638
        _source[j] = i;
kpeter@830
   639
        _target[j] = _root;
kpeter@830
   640
        _reverse[j] = k;
kpeter@830
   641
        _forward[k] = true;
kpeter@830
   642
        _source[k] = _root;
kpeter@830
   643
        _target[k] = i;
kpeter@830
   644
        _reverse[k] = j;
kpeter@830
   645
        ++j; ++k;
kpeter@830
   646
      }
kpeter@830
   647
      _first_out[i] = j;
kpeter@830
   648
      _first_out[_res_node_num] = k;
kpeter@830
   649
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@830
   650
        int fi = _arc_idf[a];
kpeter@830
   651
        int bi = _arc_idb[a];
kpeter@830
   652
        _reverse[fi] = bi;
kpeter@830
   653
        _reverse[bi] = fi;
kpeter@830
   654
      }
alpar@877
   655
kpeter@830
   656
      // Reset parameters
kpeter@830
   657
      resetParams();
kpeter@830
   658
      return *this;
kpeter@830
   659
    }
kpeter@830
   660
kpeter@808
   661
    /// @}
kpeter@808
   662
kpeter@808
   663
    /// \name Query Functions
kpeter@809
   664
    /// The results of the algorithm can be obtained using these
kpeter@808
   665
    /// functions.\n
kpeter@809
   666
    /// The \ref run() function must be called before using them.
kpeter@808
   667
kpeter@808
   668
    /// @{
kpeter@808
   669
kpeter@809
   670
    /// \brief Return the total cost of the found flow.
kpeter@808
   671
    ///
kpeter@809
   672
    /// This function returns the total cost of the found flow.
kpeter@809
   673
    /// Its complexity is O(e).
kpeter@809
   674
    ///
kpeter@809
   675
    /// \note The return type of the function can be specified as a
kpeter@809
   676
    /// template parameter. For example,
kpeter@809
   677
    /// \code
kpeter@809
   678
    ///   cs.totalCost<double>();
kpeter@809
   679
    /// \endcode
kpeter@809
   680
    /// It is useful if the total cost cannot be stored in the \c Cost
kpeter@809
   681
    /// type of the algorithm, which is the default return type of the
kpeter@809
   682
    /// function.
kpeter@808
   683
    ///
kpeter@808
   684
    /// \pre \ref run() must be called before using this function.
kpeter@809
   685
    template <typename Number>
kpeter@809
   686
    Number totalCost() const {
kpeter@809
   687
      Number c = 0;
kpeter@809
   688
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   689
        int i = _arc_idb[a];
kpeter@809
   690
        c += static_cast<Number>(_res_cap[i]) *
kpeter@809
   691
             (-static_cast<Number>(_scost[i]));
kpeter@809
   692
      }
kpeter@809
   693
      return c;
kpeter@808
   694
    }
kpeter@808
   695
kpeter@809
   696
#ifndef DOXYGEN
kpeter@809
   697
    Cost totalCost() const {
kpeter@809
   698
      return totalCost<Cost>();
kpeter@808
   699
    }
kpeter@809
   700
#endif
kpeter@808
   701
kpeter@808
   702
    /// \brief Return the flow on the given arc.
kpeter@808
   703
    ///
kpeter@809
   704
    /// This function returns the flow on the given arc.
kpeter@808
   705
    ///
kpeter@808
   706
    /// \pre \ref run() must be called before using this function.
kpeter@809
   707
    Value flow(const Arc& a) const {
kpeter@809
   708
      return _res_cap[_arc_idb[a]];
kpeter@808
   709
    }
kpeter@808
   710
kpeter@809
   711
    /// \brief Return the flow map (the primal solution).
kpeter@808
   712
    ///
kpeter@809
   713
    /// This function copies the flow value on each arc into the given
kpeter@809
   714
    /// map. The \c Value type of the algorithm must be convertible to
kpeter@809
   715
    /// the \c Value type of the map.
kpeter@808
   716
    ///
kpeter@808
   717
    /// \pre \ref run() must be called before using this function.
kpeter@809
   718
    template <typename FlowMap>
kpeter@809
   719
    void flowMap(FlowMap &map) const {
kpeter@809
   720
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   721
        map.set(a, _res_cap[_arc_idb[a]]);
kpeter@809
   722
      }
kpeter@808
   723
    }
kpeter@808
   724
kpeter@809
   725
    /// \brief Return the potential (dual value) of the given node.
kpeter@808
   726
    ///
kpeter@809
   727
    /// This function returns the potential (dual value) of the
kpeter@809
   728
    /// given node.
kpeter@808
   729
    ///
kpeter@808
   730
    /// \pre \ref run() must be called before using this function.
kpeter@809
   731
    Cost potential(const Node& n) const {
kpeter@809
   732
      return static_cast<Cost>(_pi[_node_id[n]]);
kpeter@809
   733
    }
kpeter@809
   734
kpeter@809
   735
    /// \brief Return the potential map (the dual solution).
kpeter@809
   736
    ///
kpeter@809
   737
    /// This function copies the potential (dual value) of each node
kpeter@809
   738
    /// into the given map.
kpeter@809
   739
    /// The \c Cost type of the algorithm must be convertible to the
kpeter@809
   740
    /// \c Value type of the map.
kpeter@809
   741
    ///
kpeter@809
   742
    /// \pre \ref run() must be called before using this function.
kpeter@809
   743
    template <typename PotentialMap>
kpeter@809
   744
    void potentialMap(PotentialMap &map) const {
kpeter@809
   745
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@809
   746
        map.set(n, static_cast<Cost>(_pi[_node_id[n]]));
kpeter@809
   747
      }
kpeter@808
   748
    }
kpeter@808
   749
kpeter@808
   750
    /// @}
kpeter@808
   751
kpeter@808
   752
  private:
kpeter@808
   753
kpeter@809
   754
    // Initialize the algorithm
kpeter@809
   755
    ProblemType init() {
kpeter@821
   756
      if (_res_node_num <= 1) return INFEASIBLE;
kpeter@809
   757
kpeter@809
   758
      // Check the sum of supply values
kpeter@809
   759
      _sum_supply = 0;
kpeter@809
   760
      for (int i = 0; i != _root; ++i) {
kpeter@809
   761
        _sum_supply += _supply[i];
kpeter@808
   762
      }
kpeter@809
   763
      if (_sum_supply > 0) return INFEASIBLE;
alpar@877
   764
kpeter@809
   765
kpeter@809
   766
      // Initialize vectors
kpeter@809
   767
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@809
   768
        _pi[i] = 0;
kpeter@809
   769
        _excess[i] = _supply[i];
kpeter@809
   770
      }
alpar@877
   771
kpeter@809
   772
      // Remove infinite upper bounds and check negative arcs
kpeter@809
   773
      const Value MAX = std::numeric_limits<Value>::max();
kpeter@809
   774
      int last_out;
kpeter@809
   775
      if (_have_lower) {
kpeter@809
   776
        for (int i = 0; i != _root; ++i) {
kpeter@809
   777
          last_out = _first_out[i+1];
kpeter@809
   778
          for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@809
   779
            if (_forward[j]) {
kpeter@809
   780
              Value c = _scost[j] < 0 ? _upper[j] : _lower[j];
kpeter@809
   781
              if (c >= MAX) return UNBOUNDED;
kpeter@809
   782
              _excess[i] -= c;
kpeter@809
   783
              _excess[_target[j]] += c;
kpeter@809
   784
            }
kpeter@809
   785
          }
kpeter@809
   786
        }
kpeter@809
   787
      } else {
kpeter@809
   788
        for (int i = 0; i != _root; ++i) {
kpeter@809
   789
          last_out = _first_out[i+1];
kpeter@809
   790
          for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@809
   791
            if (_forward[j] && _scost[j] < 0) {
kpeter@809
   792
              Value c = _upper[j];
kpeter@809
   793
              if (c >= MAX) return UNBOUNDED;
kpeter@809
   794
              _excess[i] -= c;
kpeter@809
   795
              _excess[_target[j]] += c;
kpeter@809
   796
            }
kpeter@809
   797
          }
kpeter@809
   798
        }
kpeter@809
   799
      }
kpeter@809
   800
      Value ex, max_cap = 0;
kpeter@809
   801
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@809
   802
        ex = _excess[i];
kpeter@809
   803
        _excess[i] = 0;
kpeter@809
   804
        if (ex < 0) max_cap -= ex;
kpeter@809
   805
      }
kpeter@809
   806
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@809
   807
        if (_upper[j] >= MAX) _upper[j] = max_cap;
kpeter@808
   808
      }
kpeter@808
   809
kpeter@809
   810
      // Initialize the large cost vector and the epsilon parameter
kpeter@809
   811
      _epsilon = 0;
kpeter@809
   812
      LargeCost lc;
kpeter@809
   813
      for (int i = 0; i != _root; ++i) {
kpeter@809
   814
        last_out = _first_out[i+1];
kpeter@809
   815
        for (int j = _first_out[i]; j != last_out; ++j) {
kpeter@809
   816
          lc = static_cast<LargeCost>(_scost[j]) * _res_node_num * _alpha;
kpeter@809
   817
          _cost[j] = lc;
kpeter@809
   818
          if (lc > _epsilon) _epsilon = lc;
kpeter@809
   819
        }
kpeter@809
   820
      }
kpeter@809
   821
      _epsilon /= _alpha;
kpeter@808
   822
kpeter@809
   823
      // Initialize maps for Circulation and remove non-zero lower bounds
kpeter@809
   824
      ConstMap<Arc, Value> low(0);
kpeter@809
   825
      typedef typename Digraph::template ArcMap<Value> ValueArcMap;
kpeter@809
   826
      typedef typename Digraph::template NodeMap<Value> ValueNodeMap;
kpeter@809
   827
      ValueArcMap cap(_graph), flow(_graph);
kpeter@809
   828
      ValueNodeMap sup(_graph);
kpeter@809
   829
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@809
   830
        sup[n] = _supply[_node_id[n]];
kpeter@808
   831
      }
kpeter@809
   832
      if (_have_lower) {
kpeter@809
   833
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   834
          int j = _arc_idf[a];
kpeter@809
   835
          Value c = _lower[j];
kpeter@809
   836
          cap[a] = _upper[j] - c;
kpeter@809
   837
          sup[_graph.source(a)] -= c;
kpeter@809
   838
          sup[_graph.target(a)] += c;
kpeter@809
   839
        }
kpeter@809
   840
      } else {
kpeter@809
   841
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   842
          cap[a] = _upper[_arc_idf[a]];
kpeter@809
   843
        }
kpeter@809
   844
      }
kpeter@808
   845
kpeter@839
   846
      _sup_node_num = 0;
kpeter@839
   847
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@839
   848
        if (sup[n] > 0) ++_sup_node_num;
kpeter@839
   849
      }
kpeter@839
   850
kpeter@808
   851
      // Find a feasible flow using Circulation
kpeter@809
   852
      Circulation<Digraph, ConstMap<Arc, Value>, ValueArcMap, ValueNodeMap>
kpeter@809
   853
        circ(_graph, low, cap, sup);
kpeter@809
   854
      if (!circ.flowMap(flow).run()) return INFEASIBLE;
kpeter@809
   855
kpeter@809
   856
      // Set residual capacities and handle GEQ supply type
kpeter@809
   857
      if (_sum_supply < 0) {
kpeter@809
   858
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   859
          Value fa = flow[a];
kpeter@809
   860
          _res_cap[_arc_idf[a]] = cap[a] - fa;
kpeter@809
   861
          _res_cap[_arc_idb[a]] = fa;
kpeter@809
   862
          sup[_graph.source(a)] -= fa;
kpeter@809
   863
          sup[_graph.target(a)] += fa;
kpeter@809
   864
        }
kpeter@809
   865
        for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@809
   866
          _excess[_node_id[n]] = sup[n];
kpeter@809
   867
        }
kpeter@809
   868
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@809
   869
          int u = _target[a];
kpeter@809
   870
          int ra = _reverse[a];
kpeter@809
   871
          _res_cap[a] = -_sum_supply + 1;
kpeter@809
   872
          _res_cap[ra] = -_excess[u];
kpeter@809
   873
          _cost[a] = 0;
kpeter@809
   874
          _cost[ra] = 0;
kpeter@809
   875
          _excess[u] = 0;
kpeter@809
   876
        }
kpeter@809
   877
      } else {
kpeter@809
   878
        for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@809
   879
          Value fa = flow[a];
kpeter@809
   880
          _res_cap[_arc_idf[a]] = cap[a] - fa;
kpeter@809
   881
          _res_cap[_arc_idb[a]] = fa;
kpeter@809
   882
        }
kpeter@809
   883
        for (int a = _first_out[_root]; a != _res_arc_num; ++a) {
kpeter@809
   884
          int ra = _reverse[a];
kpeter@839
   885
          _res_cap[a] = 0;
kpeter@809
   886
          _res_cap[ra] = 0;
kpeter@809
   887
          _cost[a] = 0;
kpeter@809
   888
          _cost[ra] = 0;
kpeter@809
   889
        }
kpeter@809
   890
      }
alpar@877
   891
kpeter@809
   892
      return OPTIMAL;
kpeter@809
   893
    }
kpeter@809
   894
kpeter@809
   895
    // Execute the algorithm and transform the results
kpeter@810
   896
    void start(Method method) {
kpeter@810
   897
      // Maximum path length for partial augment
kpeter@810
   898
      const int MAX_PATH_LENGTH = 4;
kpeter@839
   899
alpar@877
   900
      // Initialize data structures for buckets
kpeter@839
   901
      _max_rank = _alpha * _res_node_num;
kpeter@839
   902
      _buckets.resize(_max_rank);
kpeter@839
   903
      _bucket_next.resize(_res_node_num + 1);
kpeter@839
   904
      _bucket_prev.resize(_res_node_num + 1);
kpeter@839
   905
      _rank.resize(_res_node_num + 1);
alpar@877
   906
kpeter@809
   907
      // Execute the algorithm
kpeter@810
   908
      switch (method) {
kpeter@810
   909
        case PUSH:
kpeter@810
   910
          startPush();
kpeter@810
   911
          break;
kpeter@810
   912
        case AUGMENT:
kpeter@810
   913
          startAugment();
kpeter@810
   914
          break;
kpeter@810
   915
        case PARTIAL_AUGMENT:
kpeter@810
   916
          startAugment(MAX_PATH_LENGTH);
kpeter@810
   917
          break;
kpeter@809
   918
      }
kpeter@809
   919
kpeter@809
   920
      // Compute node potentials for the original costs
kpeter@809
   921
      _arc_vec.clear();
kpeter@809
   922
      _cost_vec.clear();
kpeter@809
   923
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@809
   924
        if (_res_cap[j] > 0) {
kpeter@809
   925
          _arc_vec.push_back(IntPair(_source[j], _target[j]));
kpeter@809
   926
          _cost_vec.push_back(_scost[j]);
kpeter@809
   927
        }
kpeter@809
   928
      }
kpeter@809
   929
      _sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end());
kpeter@809
   930
kpeter@809
   931
      typename BellmanFord<StaticDigraph, LargeCostArcMap>
kpeter@809
   932
        ::template SetDistMap<LargeCostNodeMap>::Create bf(_sgr, _cost_map);
kpeter@809
   933
      bf.distMap(_pi_map);
kpeter@809
   934
      bf.init(0);
kpeter@809
   935
      bf.start();
kpeter@809
   936
kpeter@809
   937
      // Handle non-zero lower bounds
kpeter@809
   938
      if (_have_lower) {
kpeter@809
   939
        int limit = _first_out[_root];
kpeter@809
   940
        for (int j = 0; j != limit; ++j) {
kpeter@809
   941
          if (!_forward[j]) _res_cap[j] += _lower[j];
kpeter@809
   942
        }
kpeter@809
   943
      }
kpeter@808
   944
    }
alpar@877
   945
kpeter@839
   946
    // Initialize a cost scaling phase
kpeter@839
   947
    void initPhase() {
kpeter@839
   948
      // Saturate arcs not satisfying the optimality condition
kpeter@839
   949
      for (int u = 0; u != _res_node_num; ++u) {
kpeter@839
   950
        int last_out = _first_out[u+1];
kpeter@839
   951
        LargeCost pi_u = _pi[u];
kpeter@839
   952
        for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@839
   953
          int v = _target[a];
kpeter@839
   954
          if (_res_cap[a] > 0 && _cost[a] + pi_u - _pi[v] < 0) {
kpeter@839
   955
            Value delta = _res_cap[a];
kpeter@839
   956
            _excess[u] -= delta;
kpeter@839
   957
            _excess[v] += delta;
kpeter@839
   958
            _res_cap[a] = 0;
kpeter@839
   959
            _res_cap[_reverse[a]] += delta;
kpeter@839
   960
          }
kpeter@839
   961
        }
kpeter@839
   962
      }
alpar@877
   963
kpeter@839
   964
      // Find active nodes (i.e. nodes with positive excess)
kpeter@839
   965
      for (int u = 0; u != _res_node_num; ++u) {
kpeter@839
   966
        if (_excess[u] > 0) _active_nodes.push_back(u);
kpeter@839
   967
      }
kpeter@839
   968
kpeter@839
   969
      // Initialize the next arcs
kpeter@839
   970
      for (int u = 0; u != _res_node_num; ++u) {
kpeter@839
   971
        _next_out[u] = _first_out[u];
kpeter@839
   972
      }
kpeter@839
   973
    }
alpar@877
   974
kpeter@839
   975
    // Early termination heuristic
kpeter@839
   976
    bool earlyTermination() {
kpeter@839
   977
      const double EARLY_TERM_FACTOR = 3.0;
kpeter@839
   978
kpeter@839
   979
      // Build a static residual graph
kpeter@839
   980
      _arc_vec.clear();
kpeter@839
   981
      _cost_vec.clear();
kpeter@839
   982
      for (int j = 0; j != _res_arc_num; ++j) {
kpeter@839
   983
        if (_res_cap[j] > 0) {
kpeter@839
   984
          _arc_vec.push_back(IntPair(_source[j], _target[j]));
kpeter@839
   985
          _cost_vec.push_back(_cost[j] + 1);
kpeter@839
   986
        }
kpeter@839
   987
      }
kpeter@839
   988
      _sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end());
kpeter@839
   989
kpeter@839
   990
      // Run Bellman-Ford algorithm to check if the current flow is optimal
kpeter@839
   991
      BellmanFord<StaticDigraph, LargeCostArcMap> bf(_sgr, _cost_map);
kpeter@839
   992
      bf.init(0);
kpeter@839
   993
      bool done = false;
kpeter@839
   994
      int K = int(EARLY_TERM_FACTOR * std::sqrt(double(_res_node_num)));
kpeter@839
   995
      for (int i = 0; i < K && !done; ++i) {
kpeter@839
   996
        done = bf.processNextWeakRound();
kpeter@839
   997
      }
kpeter@839
   998
      return done;
kpeter@839
   999
    }
kpeter@839
  1000
kpeter@839
  1001
    // Global potential update heuristic
kpeter@839
  1002
    void globalUpdate() {
kpeter@839
  1003
      int bucket_end = _root + 1;
alpar@877
  1004
kpeter@839
  1005
      // Initialize buckets
kpeter@839
  1006
      for (int r = 0; r != _max_rank; ++r) {
kpeter@839
  1007
        _buckets[r] = bucket_end;
kpeter@839
  1008
      }
kpeter@839
  1009
      Value total_excess = 0;
kpeter@839
  1010
      for (int i = 0; i != _res_node_num; ++i) {
kpeter@839
  1011
        if (_excess[i] < 0) {
kpeter@839
  1012
          _rank[i] = 0;
kpeter@839
  1013
          _bucket_next[i] = _buckets[0];
kpeter@839
  1014
          _bucket_prev[_buckets[0]] = i;
kpeter@839
  1015
          _buckets[0] = i;
kpeter@839
  1016
        } else {
kpeter@839
  1017
          total_excess += _excess[i];
kpeter@839
  1018
          _rank[i] = _max_rank;
kpeter@839
  1019
        }
kpeter@839
  1020
      }
kpeter@839
  1021
      if (total_excess == 0) return;
kpeter@839
  1022
kpeter@839
  1023
      // Search the buckets
kpeter@839
  1024
      int r = 0;
kpeter@839
  1025
      for ( ; r != _max_rank; ++r) {
kpeter@839
  1026
        while (_buckets[r] != bucket_end) {
kpeter@839
  1027
          // Remove the first node from the current bucket
kpeter@839
  1028
          int u = _buckets[r];
kpeter@839
  1029
          _buckets[r] = _bucket_next[u];
alpar@877
  1030
kpeter@839
  1031
          // Search the incomming arcs of u
kpeter@839
  1032
          LargeCost pi_u = _pi[u];
kpeter@839
  1033
          int last_out = _first_out[u+1];
kpeter@839
  1034
          for (int a = _first_out[u]; a != last_out; ++a) {
kpeter@839
  1035
            int ra = _reverse[a];
kpeter@839
  1036
            if (_res_cap[ra] > 0) {
kpeter@839
  1037
              int v = _source[ra];
kpeter@839
  1038
              int old_rank_v = _rank[v];
kpeter@839
  1039
              if (r < old_rank_v) {
kpeter@839
  1040
                // Compute the new rank of v
kpeter@839
  1041
                LargeCost nrc = (_cost[ra] + _pi[v] - pi_u) / _epsilon;
kpeter@839
  1042
                int new_rank_v = old_rank_v;
kpeter@839
  1043
                if (nrc < LargeCost(_max_rank))
kpeter@839
  1044
                  new_rank_v = r + 1 + int(nrc);
alpar@877
  1045
kpeter@839
  1046
                // Change the rank of v
kpeter@839
  1047
                if (new_rank_v < old_rank_v) {
kpeter@839
  1048
                  _rank[v] = new_rank_v;
kpeter@839
  1049
                  _next_out[v] = _first_out[v];
alpar@877
  1050
kpeter@839
  1051
                  // Remove v from its old bucket
kpeter@839
  1052
                  if (old_rank_v < _max_rank) {
kpeter@839
  1053
                    if (_buckets[old_rank_v] == v) {
kpeter@839
  1054
                      _buckets[old_rank_v] = _bucket_next[v];
kpeter@839
  1055
                    } else {
kpeter@839
  1056
                      _bucket_next[_bucket_prev[v]] = _bucket_next[v];
kpeter@839
  1057
                      _bucket_prev[_bucket_next[v]] = _bucket_prev[v];
kpeter@839
  1058
                    }
kpeter@839
  1059
                  }
alpar@877
  1060
kpeter@839
  1061
                  // Insert v to its new bucket
kpeter@839
  1062
                  _bucket_next[v] = _buckets[new_rank_v];
kpeter@839
  1063
                  _bucket_prev[_buckets[new_rank_v]] = v;
kpeter@839
  1064
                  _buckets[new_rank_v] = v;
kpeter@839
  1065
                }
kpeter@839
  1066
              }
kpeter@839
  1067
            }
kpeter@839
  1068
          }
kpeter@839
  1069
kpeter@839
  1070
          // Finish search if there are no more active nodes
kpeter@839
  1071
          if (_excess[u] > 0) {
kpeter@839
  1072
            total_excess -= _excess[u];
kpeter@839
  1073
            if (total_excess <= 0) break;
kpeter@839
  1074
          }
kpeter@839
  1075
        }
kpeter@839
  1076
        if (total_excess <= 0) break;
kpeter@839
  1077
      }
alpar@877
  1078
kpeter@839
  1079
      // Relabel nodes
kpeter@839
  1080
      for (int u = 0; u != _res_node_num; ++u) {
kpeter@839
  1081
        int k = std::min(_rank[u], r);
kpeter@839
  1082
        if (k > 0) {
kpeter@839
  1083
          _pi[u] -= _epsilon * k;
kpeter@839
  1084
          _next_out[u] = _first_out[u];
kpeter@839
  1085
        }
kpeter@839
  1086
      }
kpeter@839
  1087
    }
kpeter@808
  1088
kpeter@810
  1089
    /// Execute the algorithm performing augment and relabel operations
kpeter@810
  1090
    void startAugment(int max_length = std::numeric_limits<int>::max()) {
kpeter@808
  1091
      // Paramters for heuristics
kpeter@839
  1092
      const int EARLY_TERM_EPSILON_LIMIT = 1000;
kpeter@839
  1093
      const double GLOBAL_UPDATE_FACTOR = 3.0;
kpeter@808
  1094
kpeter@839
  1095
      const int global_update_freq = int(GLOBAL_UPDATE_FACTOR *
kpeter@839
  1096
        (_res_node_num + _sup_node_num * _sup_node_num));
kpeter@839
  1097
      int next_update_limit = global_update_freq;
alpar@877
  1098
kpeter@839
  1099
      int relabel_cnt = 0;
alpar@877
  1100
kpeter@809
  1101
      // Perform cost scaling phases
kpeter@839
  1102
      std::vector<int> path;
kpeter@808
  1103
      for ( ; _epsilon >= 1; _epsilon = _epsilon < _alpha && _epsilon > 1 ?
kpeter@808
  1104
                                        1 : _epsilon / _alpha )
kpeter@808
  1105
      {
kpeter@839
  1106
        // Early termination heuristic
kpeter@839
  1107
        if (_epsilon <= EARLY_TERM_EPSILON_LIMIT) {
kpeter@839
  1108
          if (earlyTermination()) break;
kpeter@808
  1109
        }
alpar@877
  1110
kpeter@839
  1111
        // Initialize current phase
kpeter@839
  1112
        initPhase();
alpar@877
  1113
kpeter@808
  1114
        // Perform partial augment and relabel operations
kpeter@809
  1115
        while (true) {
kpeter@808
  1116
          // Select an active node (FIFO selection)
kpeter@809
  1117
          while (_active_nodes.size() > 0 &&
kpeter@809
  1118
                 _excess[_active_nodes.front()] <= 0) {
kpeter@809
  1119
            _active_nodes.pop_front();
kpeter@808
  1120
          }
kpeter@809
  1121
          if (_active_nodes.size() == 0) break;
kpeter@809
  1122
          int start = _active_nodes.front();
kpeter@808
  1123
kpeter@808
  1124
          // Find an augmenting path from the start node
kpeter@839
  1125
          path.clear();
kpeter@809
  1126
          int tip = start;
kpeter@839
  1127
          while (_excess[tip] >= 0 && int(path.size()) < max_length) {
kpeter@809
  1128
            int u;
kpeter@839
  1129
            LargeCost min_red_cost, rc, pi_tip = _pi[tip];
kpeter@839
  1130
            int last_out = _first_out[tip+1];
kpeter@809
  1131
            for (int a = _next_out[tip]; a != last_out; ++a) {
kpeter@839
  1132
              u = _target[a];
kpeter@839
  1133
              if (_res_cap[a] > 0 && _cost[a] + pi_tip - _pi[u] < 0) {
kpeter@839
  1134
                path.push_back(a);
kpeter@809
  1135
                _next_out[tip] = a;
kpeter@808
  1136
                tip = u;
kpeter@808
  1137
                goto next_step;
kpeter@808
  1138
              }
kpeter@808
  1139
            }
kpeter@808
  1140
kpeter@808
  1141
            // Relabel tip node
kpeter@839
  1142
            min_red_cost = std::numeric_limits<LargeCost>::max();
kpeter@839
  1143
            if (tip != start) {
kpeter@839
  1144
              int ra = _reverse[path.back()];
kpeter@839
  1145
              min_red_cost = _cost[ra] + pi_tip - _pi[_target[ra]];
kpeter@839
  1146
            }
kpeter@809
  1147
            for (int a = _first_out[tip]; a != last_out; ++a) {
kpeter@839
  1148
              rc = _cost[a] + pi_tip - _pi[_target[a]];
kpeter@809
  1149
              if (_res_cap[a] > 0 && rc < min_red_cost) {
kpeter@809
  1150
                min_red_cost = rc;
kpeter@809
  1151
              }
kpeter@808
  1152
            }
kpeter@809
  1153
            _pi[tip] -= min_red_cost + _epsilon;
kpeter@809
  1154
            _next_out[tip] = _first_out[tip];
kpeter@839
  1155
            ++relabel_cnt;
kpeter@808
  1156
kpeter@808
  1157
            // Step back
kpeter@808
  1158
            if (tip != start) {
kpeter@839
  1159
              tip = _source[path.back()];
kpeter@839
  1160
              path.pop_back();
kpeter@808
  1161
            }
kpeter@808
  1162
kpeter@809
  1163
          next_step: ;
kpeter@808
  1164
          }
kpeter@808
  1165
kpeter@808
  1166
          // Augment along the found path (as much flow as possible)
kpeter@809
  1167
          Value delta;
kpeter@839
  1168
          int pa, u, v = start;
kpeter@839
  1169
          for (int i = 0; i != int(path.size()); ++i) {
kpeter@839
  1170
            pa = path[i];
kpeter@809
  1171
            u = v;
kpeter@839
  1172
            v = _target[pa];
kpeter@809
  1173
            delta = std::min(_res_cap[pa], _excess[u]);
kpeter@809
  1174
            _res_cap[pa] -= delta;
kpeter@809
  1175
            _res_cap[_reverse[pa]] += delta;
kpeter@809
  1176
            _excess[u] -= delta;
kpeter@809
  1177
            _excess[v] += delta;
kpeter@809
  1178
            if (_excess[v] > 0 && _excess[v] <= delta)
kpeter@809
  1179
              _active_nodes.push_back(v);
kpeter@808
  1180
          }
kpeter@839
  1181
kpeter@839
  1182
          // Global update heuristic
kpeter@839
  1183
          if (relabel_cnt >= next_update_limit) {
kpeter@839
  1184
            globalUpdate();
kpeter@839
  1185
            next_update_limit += global_update_freq;
kpeter@839
  1186
          }
kpeter@808
  1187
        }
kpeter@808
  1188
      }
kpeter@808
  1189
    }
kpeter@808
  1190
kpeter@809
  1191
    /// Execute the algorithm performing push and relabel operations
kpeter@810
  1192
    void startPush() {
kpeter@808
  1193
      // Paramters for heuristics
kpeter@839
  1194
      const int EARLY_TERM_EPSILON_LIMIT = 1000;
kpeter@839
  1195
      const double GLOBAL_UPDATE_FACTOR = 2.0;
kpeter@808
  1196
kpeter@839
  1197
      const int global_update_freq = int(GLOBAL_UPDATE_FACTOR *
kpeter@839
  1198
        (_res_node_num + _sup_node_num * _sup_node_num));
kpeter@839
  1199
      int next_update_limit = global_update_freq;
kpeter@839
  1200
kpeter@839
  1201
      int relabel_cnt = 0;
alpar@877
  1202
kpeter@809
  1203
      // Perform cost scaling phases
kpeter@809
  1204
      BoolVector hyper(_res_node_num, false);
kpeter@839
  1205
      LargeCostVector hyper_cost(_res_node_num);
kpeter@808
  1206
      for ( ; _epsilon >= 1; _epsilon = _epsilon < _alpha && _epsilon > 1 ?
kpeter@808
  1207
                                        1 : _epsilon / _alpha )
kpeter@808
  1208
      {
kpeter@839
  1209
        // Early termination heuristic
kpeter@839
  1210
        if (_epsilon <= EARLY_TERM_EPSILON_LIMIT) {
kpeter@839
  1211
          if (earlyTermination()) break;
kpeter@808
  1212
        }
alpar@877
  1213
kpeter@839
  1214
        // Initialize current phase
kpeter@839
  1215
        initPhase();
kpeter@808
  1216
kpeter@808
  1217
        // Perform push and relabel operations
kpeter@809
  1218
        while (_active_nodes.size() > 0) {
kpeter@839
  1219
          LargeCost min_red_cost, rc, pi_n;
kpeter@809
  1220
          Value delta;
kpeter@809
  1221
          int n, t, a, last_out = _res_arc_num;
kpeter@809
  1222
kpeter@839
  1223
        next_node:
kpeter@808
  1224
          // Select an active node (FIFO selection)
kpeter@809
  1225
          n = _active_nodes.front();
kpeter@839
  1226
          last_out = _first_out[n+1];
kpeter@839
  1227
          pi_n = _pi[n];
alpar@877
  1228
kpeter@808
  1229
          // Perform push operations if there are admissible arcs
kpeter@809
  1230
          if (_excess[n] > 0) {
kpeter@809
  1231
            for (a = _next_out[n]; a != last_out; ++a) {
kpeter@809
  1232
              if (_res_cap[a] > 0 &&
kpeter@839
  1233
                  _cost[a] + pi_n - _pi[_target[a]] < 0) {
kpeter@809
  1234
                delta = std::min(_res_cap[a], _excess[n]);
kpeter@809
  1235
                t = _target[a];
kpeter@808
  1236
kpeter@808
  1237
                // Push-look-ahead heuristic
kpeter@809
  1238
                Value ahead = -_excess[t];
kpeter@839
  1239
                int last_out_t = _first_out[t+1];
kpeter@839
  1240
                LargeCost pi_t = _pi[t];
kpeter@809
  1241
                for (int ta = _next_out[t]; ta != last_out_t; ++ta) {
alpar@877
  1242
                  if (_res_cap[ta] > 0 &&
kpeter@839
  1243
                      _cost[ta] + pi_t - _pi[_target[ta]] < 0)
kpeter@809
  1244
                    ahead += _res_cap[ta];
kpeter@809
  1245
                  if (ahead >= delta) break;
kpeter@808
  1246
                }
kpeter@808
  1247
                if (ahead < 0) ahead = 0;
kpeter@808
  1248
kpeter@808
  1249
                // Push flow along the arc
kpeter@839
  1250
                if (ahead < delta && !hyper[t]) {
kpeter@809
  1251
                  _res_cap[a] -= ahead;
kpeter@809
  1252
                  _res_cap[_reverse[a]] += ahead;
kpeter@808
  1253
                  _excess[n] -= ahead;
kpeter@808
  1254
                  _excess[t] += ahead;
kpeter@809
  1255
                  _active_nodes.push_front(t);
kpeter@808
  1256
                  hyper[t] = true;
kpeter@839
  1257
                  hyper_cost[t] = _cost[a] + pi_n - pi_t;
kpeter@809
  1258
                  _next_out[n] = a;
kpeter@809
  1259
                  goto next_node;
kpeter@808
  1260
                } else {
kpeter@809
  1261
                  _res_cap[a] -= delta;
kpeter@809
  1262
                  _res_cap[_reverse[a]] += delta;
kpeter@808
  1263
                  _excess[n] -= delta;
kpeter@808
  1264
                  _excess[t] += delta;
kpeter@808
  1265
                  if (_excess[t] > 0 && _excess[t] <= delta)
kpeter@809
  1266
                    _active_nodes.push_back(t);
kpeter@808
  1267
                }
kpeter@808
  1268
kpeter@809
  1269
                if (_excess[n] == 0) {
kpeter@809
  1270
                  _next_out[n] = a;
kpeter@809
  1271
                  goto remove_nodes;
kpeter@809
  1272
                }
kpeter@808
  1273
              }
kpeter@808
  1274
            }
kpeter@809
  1275
            _next_out[n] = a;
kpeter@808
  1276
          }
kpeter@808
  1277
kpeter@808
  1278
          // Relabel the node if it is still active (or hyper)
kpeter@809
  1279
          if (_excess[n] > 0 || hyper[n]) {
kpeter@839
  1280
             min_red_cost = hyper[n] ? -hyper_cost[n] :
kpeter@839
  1281
               std::numeric_limits<LargeCost>::max();
kpeter@809
  1282
            for (int a = _first_out[n]; a != last_out; ++a) {
kpeter@839
  1283
              rc = _cost[a] + pi_n - _pi[_target[a]];
kpeter@809
  1284
              if (_res_cap[a] > 0 && rc < min_red_cost) {
kpeter@809
  1285
                min_red_cost = rc;
kpeter@809
  1286
              }
kpeter@808
  1287
            }
kpeter@809
  1288
            _pi[n] -= min_red_cost + _epsilon;
kpeter@839
  1289
            _next_out[n] = _first_out[n];
kpeter@808
  1290
            hyper[n] = false;
kpeter@839
  1291
            ++relabel_cnt;
kpeter@808
  1292
          }
alpar@877
  1293
kpeter@808
  1294
          // Remove nodes that are not active nor hyper
kpeter@809
  1295
        remove_nodes:
kpeter@809
  1296
          while ( _active_nodes.size() > 0 &&
kpeter@809
  1297
                  _excess[_active_nodes.front()] <= 0 &&
kpeter@809
  1298
                  !hyper[_active_nodes.front()] ) {
kpeter@809
  1299
            _active_nodes.pop_front();
kpeter@808
  1300
          }
alpar@877
  1301
kpeter@839
  1302
          // Global update heuristic
kpeter@839
  1303
          if (relabel_cnt >= next_update_limit) {
kpeter@839
  1304
            globalUpdate();
kpeter@839
  1305
            for (int u = 0; u != _res_node_num; ++u)
kpeter@839
  1306
              hyper[u] = false;
kpeter@839
  1307
            next_update_limit += global_update_freq;
kpeter@839
  1308
          }
kpeter@808
  1309
        }
kpeter@808
  1310
      }
kpeter@808
  1311
    }
kpeter@808
  1312
kpeter@808
  1313
  }; //class CostScaling
kpeter@808
  1314
kpeter@808
  1315
  ///@}
kpeter@808
  1316
kpeter@808
  1317
} //namespace lemon
kpeter@808
  1318
kpeter@808
  1319
#endif //LEMON_COST_SCALING_H