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