lemon/network_simplex.h
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 25 Mar 2009 21:37:50 +0100
changeset 598 c7d160f73d52
parent 597 5232721b3f14
child 599 9ad8d2122b50
permissions -rw-r--r--
Support multiple run() calls in NetworkSimplex (#234)
kpeter@593
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
kpeter@593
     2
 *
kpeter@593
     3
 * This file is a part of LEMON, a generic C++ optimization library.
kpeter@593
     4
 *
kpeter@593
     5
 * Copyright (C) 2003-2009
kpeter@593
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@593
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@593
     8
 *
kpeter@593
     9
 * Permission to use, modify and distribute this software is granted
kpeter@593
    10
 * provided that this copyright notice appears in all copies. For
kpeter@593
    11
 * precise terms see the accompanying LICENSE file.
kpeter@593
    12
 *
kpeter@593
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@593
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@593
    15
 * purpose.
kpeter@593
    16
 *
kpeter@593
    17
 */
kpeter@593
    18
kpeter@593
    19
#ifndef LEMON_NETWORK_SIMPLEX_H
kpeter@593
    20
#define LEMON_NETWORK_SIMPLEX_H
kpeter@593
    21
kpeter@593
    22
/// \ingroup min_cost_flow
kpeter@593
    23
///
kpeter@593
    24
/// \file
kpeter@597
    25
/// \brief Network Simplex algorithm for finding a minimum cost flow.
kpeter@593
    26
kpeter@593
    27
#include <vector>
kpeter@593
    28
#include <limits>
kpeter@593
    29
#include <algorithm>
kpeter@593
    30
kpeter@595
    31
#include <lemon/core.h>
kpeter@593
    32
#include <lemon/math.h>
kpeter@593
    33
kpeter@593
    34
namespace lemon {
kpeter@593
    35
kpeter@593
    36
  /// \addtogroup min_cost_flow
kpeter@593
    37
  /// @{
kpeter@593
    38
kpeter@597
    39
  /// \brief Implementation of the primal Network Simplex algorithm
kpeter@593
    40
  /// for finding a \ref min_cost_flow "minimum cost flow".
kpeter@593
    41
  ///
kpeter@597
    42
  /// \ref NetworkSimplex implements the primal Network Simplex algorithm
kpeter@593
    43
  /// for finding a \ref min_cost_flow "minimum cost flow".
kpeter@598
    44
  /// This algorithm is a specialized version of the linear programming
kpeter@598
    45
  /// simplex method directly for the minimum cost flow problem.
kpeter@598
    46
  /// It is one of the most efficient solution methods.
kpeter@598
    47
  ///
kpeter@598
    48
  /// In general this class is the fastest implementation available
kpeter@598
    49
  /// in LEMON for the minimum cost flow problem.
kpeter@593
    50
  ///
kpeter@597
    51
  /// \tparam GR The digraph type the algorithm runs on.
kpeter@597
    52
  /// \tparam V The value type used in the algorithm.
kpeter@597
    53
  /// By default it is \c int.
kpeter@593
    54
  ///
kpeter@598
    55
  /// \warning The value type must be a signed integer type.
kpeter@593
    56
  ///
kpeter@597
    57
  /// \note %NetworkSimplex provides five different pivot rule
kpeter@597
    58
  /// implementations. For more information see \ref PivotRule.
kpeter@597
    59
  template <typename GR, typename V = int>
kpeter@593
    60
  class NetworkSimplex
kpeter@593
    61
  {
kpeter@597
    62
  public:
kpeter@593
    63
kpeter@597
    64
    /// The value type of the algorithm
kpeter@597
    65
    typedef V Value;
kpeter@597
    66
    /// The type of the flow map
kpeter@597
    67
    typedef typename GR::template ArcMap<Value> FlowMap;
kpeter@597
    68
    /// The type of the potential map
kpeter@597
    69
    typedef typename GR::template NodeMap<Value> PotentialMap;
kpeter@597
    70
kpeter@597
    71
  public:
kpeter@597
    72
kpeter@597
    73
    /// \brief Enum type for selecting the pivot rule.
kpeter@597
    74
    ///
kpeter@597
    75
    /// Enum type for selecting the pivot rule for the \ref run()
kpeter@597
    76
    /// function.
kpeter@597
    77
    ///
kpeter@597
    78
    /// \ref NetworkSimplex provides five different pivot rule
kpeter@597
    79
    /// implementations that significantly affect the running time
kpeter@597
    80
    /// of the algorithm.
kpeter@597
    81
    /// By default \ref BLOCK_SEARCH "Block Search" is used, which
kpeter@597
    82
    /// proved to be the most efficient and the most robust on various
kpeter@597
    83
    /// test inputs according to our benchmark tests.
kpeter@597
    84
    /// However another pivot rule can be selected using the \ref run()
kpeter@597
    85
    /// function with the proper parameter.
kpeter@597
    86
    enum PivotRule {
kpeter@597
    87
kpeter@597
    88
      /// The First Eligible pivot rule.
kpeter@597
    89
      /// The next eligible arc is selected in a wraparound fashion
kpeter@597
    90
      /// in every iteration.
kpeter@597
    91
      FIRST_ELIGIBLE,
kpeter@597
    92
kpeter@597
    93
      /// The Best Eligible pivot rule.
kpeter@597
    94
      /// The best eligible arc is selected in every iteration.
kpeter@597
    95
      BEST_ELIGIBLE,
kpeter@597
    96
kpeter@597
    97
      /// The Block Search pivot rule.
kpeter@597
    98
      /// A specified number of arcs are examined in every iteration
kpeter@597
    99
      /// in a wraparound fashion and the best eligible arc is selected
kpeter@597
   100
      /// from this block.
kpeter@597
   101
      BLOCK_SEARCH,
kpeter@597
   102
kpeter@597
   103
      /// The Candidate List pivot rule.
kpeter@597
   104
      /// In a major iteration a candidate list is built from eligible arcs
kpeter@597
   105
      /// in a wraparound fashion and in the following minor iterations
kpeter@597
   106
      /// the best eligible arc is selected from this list.
kpeter@597
   107
      CANDIDATE_LIST,
kpeter@597
   108
kpeter@597
   109
      /// The Altering Candidate List pivot rule.
kpeter@597
   110
      /// It is a modified version of the Candidate List method.
kpeter@597
   111
      /// It keeps only the several best eligible arcs from the former
kpeter@597
   112
      /// candidate list and extends this list in every iteration.
kpeter@597
   113
      ALTERING_LIST
kpeter@597
   114
    };
kpeter@597
   115
kpeter@597
   116
  private:
kpeter@597
   117
kpeter@597
   118
    TEMPLATE_DIGRAPH_TYPEDEFS(GR);
kpeter@597
   119
kpeter@597
   120
    typedef typename GR::template ArcMap<Value> ValueArcMap;
kpeter@597
   121
    typedef typename GR::template NodeMap<Value> ValueNodeMap;
kpeter@593
   122
kpeter@593
   123
    typedef std::vector<Arc> ArcVector;
kpeter@593
   124
    typedef std::vector<Node> NodeVector;
kpeter@593
   125
    typedef std::vector<int> IntVector;
kpeter@593
   126
    typedef std::vector<bool> BoolVector;
kpeter@597
   127
    typedef std::vector<Value> ValueVector;
kpeter@593
   128
kpeter@593
   129
    // State constants for arcs
kpeter@593
   130
    enum ArcStateEnum {
kpeter@593
   131
      STATE_UPPER = -1,
kpeter@593
   132
      STATE_TREE  =  0,
kpeter@593
   133
      STATE_LOWER =  1
kpeter@593
   134
    };
kpeter@593
   135
kpeter@593
   136
  private:
kpeter@593
   137
kpeter@597
   138
    // Data related to the underlying digraph
kpeter@597
   139
    const GR &_graph;
kpeter@597
   140
    int _node_num;
kpeter@597
   141
    int _arc_num;
kpeter@597
   142
kpeter@597
   143
    // Parameters of the problem
kpeter@597
   144
    ValueArcMap *_plower;
kpeter@597
   145
    ValueArcMap *_pupper;
kpeter@597
   146
    ValueArcMap *_pcost;
kpeter@597
   147
    ValueNodeMap *_psupply;
kpeter@597
   148
    bool _pstsup;
kpeter@597
   149
    Node _psource, _ptarget;
kpeter@597
   150
    Value _pstflow;
kpeter@593
   151
kpeter@593
   152
    // Result maps
kpeter@595
   153
    FlowMap *_flow_map;
kpeter@595
   154
    PotentialMap *_potential_map;
kpeter@593
   155
    bool _local_flow;
kpeter@593
   156
    bool _local_potential;
kpeter@593
   157
kpeter@597
   158
    // Data structures for storing the digraph
kpeter@595
   159
    IntNodeMap _node_id;
kpeter@595
   160
    ArcVector _arc_ref;
kpeter@595
   161
    IntVector _source;
kpeter@595
   162
    IntVector _target;
kpeter@595
   163
kpeter@597
   164
    // Node and arc data
kpeter@597
   165
    ValueVector _cap;
kpeter@597
   166
    ValueVector _cost;
kpeter@597
   167
    ValueVector _supply;
kpeter@597
   168
    ValueVector _flow;
kpeter@597
   169
    ValueVector _pi;
kpeter@593
   170
kpeter@595
   171
    // Data for storing the spanning tree structure
kpeter@593
   172
    IntVector _parent;
kpeter@593
   173
    IntVector _pred;
kpeter@593
   174
    IntVector _thread;
kpeter@596
   175
    IntVector _rev_thread;
kpeter@596
   176
    IntVector _succ_num;
kpeter@596
   177
    IntVector _last_succ;
kpeter@596
   178
    IntVector _dirty_revs;
kpeter@593
   179
    BoolVector _forward;
kpeter@593
   180
    IntVector _state;
kpeter@593
   181
    int _root;
kpeter@593
   182
kpeter@593
   183
    // Temporary data used in the current pivot iteration
kpeter@595
   184
    int in_arc, join, u_in, v_in, u_out, v_out;
kpeter@595
   185
    int first, second, right, last;
kpeter@593
   186
    int stem, par_stem, new_stem;
kpeter@597
   187
    Value delta;
kpeter@593
   188
kpeter@593
   189
  private:
kpeter@593
   190
kpeter@597
   191
    // Implementation of the First Eligible pivot rule
kpeter@593
   192
    class FirstEligiblePivotRule
kpeter@593
   193
    {
kpeter@593
   194
    private:
kpeter@593
   195
kpeter@593
   196
      // References to the NetworkSimplex class
kpeter@593
   197
      const IntVector  &_source;
kpeter@593
   198
      const IntVector  &_target;
kpeter@597
   199
      const ValueVector &_cost;
kpeter@593
   200
      const IntVector  &_state;
kpeter@597
   201
      const ValueVector &_pi;
kpeter@593
   202
      int &_in_arc;
kpeter@593
   203
      int _arc_num;
kpeter@593
   204
kpeter@593
   205
      // Pivot rule data
kpeter@593
   206
      int _next_arc;
kpeter@593
   207
kpeter@593
   208
    public:
kpeter@593
   209
kpeter@597
   210
      // Constructor
kpeter@593
   211
      FirstEligiblePivotRule(NetworkSimplex &ns) :
kpeter@595
   212
        _source(ns._source), _target(ns._target),
kpeter@593
   213
        _cost(ns._cost), _state(ns._state), _pi(ns._pi),
kpeter@595
   214
        _in_arc(ns.in_arc), _arc_num(ns._arc_num), _next_arc(0)
kpeter@593
   215
      {}
kpeter@593
   216
kpeter@597
   217
      // Find next entering arc
kpeter@593
   218
      bool findEnteringArc() {
kpeter@597
   219
        Value c;
kpeter@593
   220
        for (int e = _next_arc; e < _arc_num; ++e) {
kpeter@593
   221
          c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   222
          if (c < 0) {
kpeter@593
   223
            _in_arc = e;
kpeter@593
   224
            _next_arc = e + 1;
kpeter@593
   225
            return true;
kpeter@593
   226
          }
kpeter@593
   227
        }
kpeter@593
   228
        for (int e = 0; e < _next_arc; ++e) {
kpeter@593
   229
          c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   230
          if (c < 0) {
kpeter@593
   231
            _in_arc = e;
kpeter@593
   232
            _next_arc = e + 1;
kpeter@593
   233
            return true;
kpeter@593
   234
          }
kpeter@593
   235
        }
kpeter@593
   236
        return false;
kpeter@593
   237
      }
kpeter@593
   238
kpeter@593
   239
    }; //class FirstEligiblePivotRule
kpeter@593
   240
kpeter@593
   241
kpeter@597
   242
    // Implementation of the Best Eligible pivot rule
kpeter@593
   243
    class BestEligiblePivotRule
kpeter@593
   244
    {
kpeter@593
   245
    private:
kpeter@593
   246
kpeter@593
   247
      // References to the NetworkSimplex class
kpeter@593
   248
      const IntVector  &_source;
kpeter@593
   249
      const IntVector  &_target;
kpeter@597
   250
      const ValueVector &_cost;
kpeter@593
   251
      const IntVector  &_state;
kpeter@597
   252
      const ValueVector &_pi;
kpeter@593
   253
      int &_in_arc;
kpeter@593
   254
      int _arc_num;
kpeter@593
   255
kpeter@593
   256
    public:
kpeter@593
   257
kpeter@597
   258
      // Constructor
kpeter@593
   259
      BestEligiblePivotRule(NetworkSimplex &ns) :
kpeter@595
   260
        _source(ns._source), _target(ns._target),
kpeter@593
   261
        _cost(ns._cost), _state(ns._state), _pi(ns._pi),
kpeter@595
   262
        _in_arc(ns.in_arc), _arc_num(ns._arc_num)
kpeter@593
   263
      {}
kpeter@593
   264
kpeter@597
   265
      // Find next entering arc
kpeter@593
   266
      bool findEnteringArc() {
kpeter@597
   267
        Value c, min = 0;
kpeter@593
   268
        for (int e = 0; e < _arc_num; ++e) {
kpeter@593
   269
          c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   270
          if (c < min) {
kpeter@593
   271
            min = c;
kpeter@593
   272
            _in_arc = e;
kpeter@593
   273
          }
kpeter@593
   274
        }
kpeter@593
   275
        return min < 0;
kpeter@593
   276
      }
kpeter@593
   277
kpeter@593
   278
    }; //class BestEligiblePivotRule
kpeter@593
   279
kpeter@593
   280
kpeter@597
   281
    // Implementation of the Block Search pivot rule
kpeter@593
   282
    class BlockSearchPivotRule
kpeter@593
   283
    {
kpeter@593
   284
    private:
kpeter@593
   285
kpeter@593
   286
      // References to the NetworkSimplex class
kpeter@593
   287
      const IntVector  &_source;
kpeter@593
   288
      const IntVector  &_target;
kpeter@597
   289
      const ValueVector &_cost;
kpeter@593
   290
      const IntVector  &_state;
kpeter@597
   291
      const ValueVector &_pi;
kpeter@593
   292
      int &_in_arc;
kpeter@593
   293
      int _arc_num;
kpeter@593
   294
kpeter@593
   295
      // Pivot rule data
kpeter@593
   296
      int _block_size;
kpeter@593
   297
      int _next_arc;
kpeter@593
   298
kpeter@593
   299
    public:
kpeter@593
   300
kpeter@597
   301
      // Constructor
kpeter@593
   302
      BlockSearchPivotRule(NetworkSimplex &ns) :
kpeter@595
   303
        _source(ns._source), _target(ns._target),
kpeter@593
   304
        _cost(ns._cost), _state(ns._state), _pi(ns._pi),
kpeter@595
   305
        _in_arc(ns.in_arc), _arc_num(ns._arc_num), _next_arc(0)
kpeter@593
   306
      {
kpeter@593
   307
        // The main parameters of the pivot rule
kpeter@593
   308
        const double BLOCK_SIZE_FACTOR = 2.0;
kpeter@593
   309
        const int MIN_BLOCK_SIZE = 10;
kpeter@593
   310
kpeter@593
   311
        _block_size = std::max( int(BLOCK_SIZE_FACTOR * sqrt(_arc_num)),
kpeter@593
   312
                                MIN_BLOCK_SIZE );
kpeter@593
   313
      }
kpeter@593
   314
kpeter@597
   315
      // Find next entering arc
kpeter@593
   316
      bool findEnteringArc() {
kpeter@597
   317
        Value c, min = 0;
kpeter@593
   318
        int cnt = _block_size;
kpeter@593
   319
        int e, min_arc = _next_arc;
kpeter@593
   320
        for (e = _next_arc; e < _arc_num; ++e) {
kpeter@593
   321
          c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   322
          if (c < min) {
kpeter@593
   323
            min = c;
kpeter@593
   324
            min_arc = e;
kpeter@593
   325
          }
kpeter@593
   326
          if (--cnt == 0) {
kpeter@593
   327
            if (min < 0) break;
kpeter@593
   328
            cnt = _block_size;
kpeter@593
   329
          }
kpeter@593
   330
        }
kpeter@593
   331
        if (min == 0 || cnt > 0) {
kpeter@593
   332
          for (e = 0; e < _next_arc; ++e) {
kpeter@593
   333
            c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   334
            if (c < min) {
kpeter@593
   335
              min = c;
kpeter@593
   336
              min_arc = e;
kpeter@593
   337
            }
kpeter@593
   338
            if (--cnt == 0) {
kpeter@593
   339
              if (min < 0) break;
kpeter@593
   340
              cnt = _block_size;
kpeter@593
   341
            }
kpeter@593
   342
          }
kpeter@593
   343
        }
kpeter@593
   344
        if (min >= 0) return false;
kpeter@593
   345
        _in_arc = min_arc;
kpeter@593
   346
        _next_arc = e;
kpeter@593
   347
        return true;
kpeter@593
   348
      }
kpeter@593
   349
kpeter@593
   350
    }; //class BlockSearchPivotRule
kpeter@593
   351
kpeter@593
   352
kpeter@597
   353
    // Implementation of the Candidate List pivot rule
kpeter@593
   354
    class CandidateListPivotRule
kpeter@593
   355
    {
kpeter@593
   356
    private:
kpeter@593
   357
kpeter@593
   358
      // References to the NetworkSimplex class
kpeter@593
   359
      const IntVector  &_source;
kpeter@593
   360
      const IntVector  &_target;
kpeter@597
   361
      const ValueVector &_cost;
kpeter@593
   362
      const IntVector  &_state;
kpeter@597
   363
      const ValueVector &_pi;
kpeter@593
   364
      int &_in_arc;
kpeter@593
   365
      int _arc_num;
kpeter@593
   366
kpeter@593
   367
      // Pivot rule data
kpeter@593
   368
      IntVector _candidates;
kpeter@593
   369
      int _list_length, _minor_limit;
kpeter@593
   370
      int _curr_length, _minor_count;
kpeter@593
   371
      int _next_arc;
kpeter@593
   372
kpeter@593
   373
    public:
kpeter@593
   374
kpeter@593
   375
      /// Constructor
kpeter@593
   376
      CandidateListPivotRule(NetworkSimplex &ns) :
kpeter@595
   377
        _source(ns._source), _target(ns._target),
kpeter@593
   378
        _cost(ns._cost), _state(ns._state), _pi(ns._pi),
kpeter@595
   379
        _in_arc(ns.in_arc), _arc_num(ns._arc_num), _next_arc(0)
kpeter@593
   380
      {
kpeter@593
   381
        // The main parameters of the pivot rule
kpeter@593
   382
        const double LIST_LENGTH_FACTOR = 1.0;
kpeter@593
   383
        const int MIN_LIST_LENGTH = 10;
kpeter@593
   384
        const double MINOR_LIMIT_FACTOR = 0.1;
kpeter@593
   385
        const int MIN_MINOR_LIMIT = 3;
kpeter@593
   386
kpeter@593
   387
        _list_length = std::max( int(LIST_LENGTH_FACTOR * sqrt(_arc_num)),
kpeter@593
   388
                                 MIN_LIST_LENGTH );
kpeter@593
   389
        _minor_limit = std::max( int(MINOR_LIMIT_FACTOR * _list_length),
kpeter@593
   390
                                 MIN_MINOR_LIMIT );
kpeter@593
   391
        _curr_length = _minor_count = 0;
kpeter@593
   392
        _candidates.resize(_list_length);
kpeter@593
   393
      }
kpeter@593
   394
kpeter@593
   395
      /// Find next entering arc
kpeter@593
   396
      bool findEnteringArc() {
kpeter@597
   397
        Value min, c;
kpeter@593
   398
        int e, min_arc = _next_arc;
kpeter@593
   399
        if (_curr_length > 0 && _minor_count < _minor_limit) {
kpeter@593
   400
          // Minor iteration: select the best eligible arc from the
kpeter@593
   401
          // current candidate list
kpeter@593
   402
          ++_minor_count;
kpeter@593
   403
          min = 0;
kpeter@593
   404
          for (int i = 0; i < _curr_length; ++i) {
kpeter@593
   405
            e = _candidates[i];
kpeter@593
   406
            c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   407
            if (c < min) {
kpeter@593
   408
              min = c;
kpeter@593
   409
              min_arc = e;
kpeter@593
   410
            }
kpeter@593
   411
            if (c >= 0) {
kpeter@593
   412
              _candidates[i--] = _candidates[--_curr_length];
kpeter@593
   413
            }
kpeter@593
   414
          }
kpeter@593
   415
          if (min < 0) {
kpeter@593
   416
            _in_arc = min_arc;
kpeter@593
   417
            return true;
kpeter@593
   418
          }
kpeter@593
   419
        }
kpeter@593
   420
kpeter@593
   421
        // Major iteration: build a new candidate list
kpeter@593
   422
        min = 0;
kpeter@593
   423
        _curr_length = 0;
kpeter@593
   424
        for (e = _next_arc; e < _arc_num; ++e) {
kpeter@593
   425
          c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   426
          if (c < 0) {
kpeter@593
   427
            _candidates[_curr_length++] = e;
kpeter@593
   428
            if (c < min) {
kpeter@593
   429
              min = c;
kpeter@593
   430
              min_arc = e;
kpeter@593
   431
            }
kpeter@593
   432
            if (_curr_length == _list_length) break;
kpeter@593
   433
          }
kpeter@593
   434
        }
kpeter@593
   435
        if (_curr_length < _list_length) {
kpeter@593
   436
          for (e = 0; e < _next_arc; ++e) {
kpeter@593
   437
            c = _state[e] * (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   438
            if (c < 0) {
kpeter@593
   439
              _candidates[_curr_length++] = e;
kpeter@593
   440
              if (c < min) {
kpeter@593
   441
                min = c;
kpeter@593
   442
                min_arc = e;
kpeter@593
   443
              }
kpeter@593
   444
              if (_curr_length == _list_length) break;
kpeter@593
   445
            }
kpeter@593
   446
          }
kpeter@593
   447
        }
kpeter@593
   448
        if (_curr_length == 0) return false;
kpeter@593
   449
        _minor_count = 1;
kpeter@593
   450
        _in_arc = min_arc;
kpeter@593
   451
        _next_arc = e;
kpeter@593
   452
        return true;
kpeter@593
   453
      }
kpeter@593
   454
kpeter@593
   455
    }; //class CandidateListPivotRule
kpeter@593
   456
kpeter@593
   457
kpeter@597
   458
    // Implementation of the Altering Candidate List pivot rule
kpeter@593
   459
    class AlteringListPivotRule
kpeter@593
   460
    {
kpeter@593
   461
    private:
kpeter@593
   462
kpeter@593
   463
      // References to the NetworkSimplex class
kpeter@593
   464
      const IntVector  &_source;
kpeter@593
   465
      const IntVector  &_target;
kpeter@597
   466
      const ValueVector &_cost;
kpeter@593
   467
      const IntVector  &_state;
kpeter@597
   468
      const ValueVector &_pi;
kpeter@593
   469
      int &_in_arc;
kpeter@593
   470
      int _arc_num;
kpeter@593
   471
kpeter@593
   472
      // Pivot rule data
kpeter@593
   473
      int _block_size, _head_length, _curr_length;
kpeter@593
   474
      int _next_arc;
kpeter@593
   475
      IntVector _candidates;
kpeter@597
   476
      ValueVector _cand_cost;
kpeter@593
   477
kpeter@593
   478
      // Functor class to compare arcs during sort of the candidate list
kpeter@593
   479
      class SortFunc
kpeter@593
   480
      {
kpeter@593
   481
      private:
kpeter@597
   482
        const ValueVector &_map;
kpeter@593
   483
      public:
kpeter@597
   484
        SortFunc(const ValueVector &map) : _map(map) {}
kpeter@593
   485
        bool operator()(int left, int right) {
kpeter@593
   486
          return _map[left] > _map[right];
kpeter@593
   487
        }
kpeter@593
   488
      };
kpeter@593
   489
kpeter@593
   490
      SortFunc _sort_func;
kpeter@593
   491
kpeter@593
   492
    public:
kpeter@593
   493
kpeter@597
   494
      // Constructor
kpeter@593
   495
      AlteringListPivotRule(NetworkSimplex &ns) :
kpeter@595
   496
        _source(ns._source), _target(ns._target),
kpeter@593
   497
        _cost(ns._cost), _state(ns._state), _pi(ns._pi),
kpeter@595
   498
        _in_arc(ns.in_arc), _arc_num(ns._arc_num),
kpeter@593
   499
        _next_arc(0), _cand_cost(ns._arc_num), _sort_func(_cand_cost)
kpeter@593
   500
      {
kpeter@593
   501
        // The main parameters of the pivot rule
kpeter@593
   502
        const double BLOCK_SIZE_FACTOR = 1.5;
kpeter@593
   503
        const int MIN_BLOCK_SIZE = 10;
kpeter@593
   504
        const double HEAD_LENGTH_FACTOR = 0.1;
kpeter@593
   505
        const int MIN_HEAD_LENGTH = 3;
kpeter@593
   506
kpeter@593
   507
        _block_size = std::max( int(BLOCK_SIZE_FACTOR * sqrt(_arc_num)),
kpeter@593
   508
                                MIN_BLOCK_SIZE );
kpeter@593
   509
        _head_length = std::max( int(HEAD_LENGTH_FACTOR * _block_size),
kpeter@593
   510
                                 MIN_HEAD_LENGTH );
kpeter@593
   511
        _candidates.resize(_head_length + _block_size);
kpeter@593
   512
        _curr_length = 0;
kpeter@593
   513
      }
kpeter@593
   514
kpeter@597
   515
      // Find next entering arc
kpeter@593
   516
      bool findEnteringArc() {
kpeter@593
   517
        // Check the current candidate list
kpeter@593
   518
        int e;
kpeter@593
   519
        for (int i = 0; i < _curr_length; ++i) {
kpeter@593
   520
          e = _candidates[i];
kpeter@593
   521
          _cand_cost[e] = _state[e] *
kpeter@593
   522
            (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   523
          if (_cand_cost[e] >= 0) {
kpeter@593
   524
            _candidates[i--] = _candidates[--_curr_length];
kpeter@593
   525
          }
kpeter@593
   526
        }
kpeter@593
   527
kpeter@593
   528
        // Extend the list
kpeter@593
   529
        int cnt = _block_size;
kpeter@595
   530
        int last_arc = 0;
kpeter@593
   531
        int limit = _head_length;
kpeter@593
   532
kpeter@593
   533
        for (int e = _next_arc; e < _arc_num; ++e) {
kpeter@593
   534
          _cand_cost[e] = _state[e] *
kpeter@593
   535
            (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   536
          if (_cand_cost[e] < 0) {
kpeter@593
   537
            _candidates[_curr_length++] = e;
kpeter@595
   538
            last_arc = e;
kpeter@593
   539
          }
kpeter@593
   540
          if (--cnt == 0) {
kpeter@593
   541
            if (_curr_length > limit) break;
kpeter@593
   542
            limit = 0;
kpeter@593
   543
            cnt = _block_size;
kpeter@593
   544
          }
kpeter@593
   545
        }
kpeter@593
   546
        if (_curr_length <= limit) {
kpeter@593
   547
          for (int e = 0; e < _next_arc; ++e) {
kpeter@593
   548
            _cand_cost[e] = _state[e] *
kpeter@593
   549
              (_cost[e] + _pi[_source[e]] - _pi[_target[e]]);
kpeter@593
   550
            if (_cand_cost[e] < 0) {
kpeter@593
   551
              _candidates[_curr_length++] = e;
kpeter@595
   552
              last_arc = e;
kpeter@593
   553
            }
kpeter@593
   554
            if (--cnt == 0) {
kpeter@593
   555
              if (_curr_length > limit) break;
kpeter@593
   556
              limit = 0;
kpeter@593
   557
              cnt = _block_size;
kpeter@593
   558
            }
kpeter@593
   559
          }
kpeter@593
   560
        }
kpeter@593
   561
        if (_curr_length == 0) return false;
kpeter@595
   562
        _next_arc = last_arc + 1;
kpeter@593
   563
kpeter@593
   564
        // Make heap of the candidate list (approximating a partial sort)
kpeter@593
   565
        make_heap( _candidates.begin(), _candidates.begin() + _curr_length,
kpeter@593
   566
                   _sort_func );
kpeter@593
   567
kpeter@593
   568
        // Pop the first element of the heap
kpeter@593
   569
        _in_arc = _candidates[0];
kpeter@593
   570
        pop_heap( _candidates.begin(), _candidates.begin() + _curr_length,
kpeter@593
   571
                  _sort_func );
kpeter@593
   572
        _curr_length = std::min(_head_length, _curr_length - 1);
kpeter@593
   573
        return true;
kpeter@593
   574
      }
kpeter@593
   575
kpeter@593
   576
    }; //class AlteringListPivotRule
kpeter@593
   577
kpeter@593
   578
  public:
kpeter@593
   579
kpeter@597
   580
    /// \brief Constructor.
kpeter@593
   581
    ///
kpeter@597
   582
    /// Constructor.
kpeter@593
   583
    ///
kpeter@595
   584
    /// \param graph The digraph the algorithm runs on.
kpeter@597
   585
    NetworkSimplex(const GR& graph) :
kpeter@597
   586
      _graph(graph),
kpeter@597
   587
      _plower(NULL), _pupper(NULL), _pcost(NULL),
kpeter@597
   588
      _psupply(NULL), _pstsup(false),
kpeter@595
   589
      _flow_map(NULL), _potential_map(NULL),
kpeter@593
   590
      _local_flow(false), _local_potential(false),
kpeter@595
   591
      _node_id(graph)
kpeter@597
   592
    {
kpeter@597
   593
      LEMON_ASSERT(std::numeric_limits<Value>::is_integer &&
kpeter@597
   594
                   std::numeric_limits<Value>::is_signed,
kpeter@597
   595
        "The value type of NetworkSimplex must be a signed integer");
kpeter@597
   596
    }
kpeter@593
   597
kpeter@593
   598
    /// Destructor.
kpeter@593
   599
    ~NetworkSimplex() {
kpeter@595
   600
      if (_local_flow) delete _flow_map;
kpeter@595
   601
      if (_local_potential) delete _potential_map;
kpeter@593
   602
    }
kpeter@593
   603
kpeter@597
   604
    /// \brief Set the lower bounds on the arcs.
kpeter@597
   605
    ///
kpeter@597
   606
    /// This function sets the lower bounds on the arcs.
kpeter@597
   607
    /// If neither this function nor \ref boundMaps() is used before
kpeter@597
   608
    /// calling \ref run(), the lower bounds will be set to zero
kpeter@597
   609
    /// on all arcs.
kpeter@597
   610
    ///
kpeter@597
   611
    /// \param map An arc map storing the lower bounds.
kpeter@597
   612
    /// Its \c Value type must be convertible to the \c Value type
kpeter@597
   613
    /// of the algorithm.
kpeter@597
   614
    ///
kpeter@597
   615
    /// \return <tt>(*this)</tt>
kpeter@597
   616
    template <typename LOWER>
kpeter@597
   617
    NetworkSimplex& lowerMap(const LOWER& map) {
kpeter@597
   618
      delete _plower;
kpeter@597
   619
      _plower = new ValueArcMap(_graph);
kpeter@597
   620
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@597
   621
        (*_plower)[a] = map[a];
kpeter@597
   622
      }
kpeter@597
   623
      return *this;
kpeter@597
   624
    }
kpeter@597
   625
kpeter@597
   626
    /// \brief Set the upper bounds (capacities) on the arcs.
kpeter@597
   627
    ///
kpeter@597
   628
    /// This function sets the upper bounds (capacities) on the arcs.
kpeter@597
   629
    /// If none of the functions \ref upperMap(), \ref capacityMap()
kpeter@597
   630
    /// and \ref boundMaps() is used before calling \ref run(),
kpeter@597
   631
    /// the upper bounds (capacities) will be set to
kpeter@597
   632
    /// \c std::numeric_limits<Value>::max() on all arcs.
kpeter@597
   633
    ///
kpeter@597
   634
    /// \param map An arc map storing the upper bounds.
kpeter@597
   635
    /// Its \c Value type must be convertible to the \c Value type
kpeter@597
   636
    /// of the algorithm.
kpeter@597
   637
    ///
kpeter@597
   638
    /// \return <tt>(*this)</tt>
kpeter@597
   639
    template<typename UPPER>
kpeter@597
   640
    NetworkSimplex& upperMap(const UPPER& map) {
kpeter@597
   641
      delete _pupper;
kpeter@597
   642
      _pupper = new ValueArcMap(_graph);
kpeter@597
   643
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@597
   644
        (*_pupper)[a] = map[a];
kpeter@597
   645
      }
kpeter@597
   646
      return *this;
kpeter@597
   647
    }
kpeter@597
   648
kpeter@597
   649
    /// \brief Set the upper bounds (capacities) on the arcs.
kpeter@597
   650
    ///
kpeter@597
   651
    /// This function sets the upper bounds (capacities) on the arcs.
kpeter@597
   652
    /// It is just an alias for \ref upperMap().
kpeter@597
   653
    ///
kpeter@597
   654
    /// \return <tt>(*this)</tt>
kpeter@597
   655
    template<typename CAP>
kpeter@597
   656
    NetworkSimplex& capacityMap(const CAP& map) {
kpeter@597
   657
      return upperMap(map);
kpeter@597
   658
    }
kpeter@597
   659
kpeter@597
   660
    /// \brief Set the lower and upper bounds on the arcs.
kpeter@597
   661
    ///
kpeter@597
   662
    /// This function sets the lower and upper bounds on the arcs.
kpeter@597
   663
    /// If neither this function nor \ref lowerMap() is used before
kpeter@597
   664
    /// calling \ref run(), the lower bounds will be set to zero
kpeter@597
   665
    /// on all arcs.
kpeter@597
   666
    /// If none of the functions \ref upperMap(), \ref capacityMap()
kpeter@597
   667
    /// and \ref boundMaps() is used before calling \ref run(),
kpeter@597
   668
    /// the upper bounds (capacities) will be set to
kpeter@597
   669
    /// \c std::numeric_limits<Value>::max() on all arcs.
kpeter@597
   670
    ///
kpeter@597
   671
    /// \param lower An arc map storing the lower bounds.
kpeter@597
   672
    /// \param upper An arc map storing the upper bounds.
kpeter@597
   673
    ///
kpeter@597
   674
    /// The \c Value type of the maps must be convertible to the
kpeter@597
   675
    /// \c Value type of the algorithm.
kpeter@597
   676
    ///
kpeter@597
   677
    /// \note This function is just a shortcut of calling \ref lowerMap()
kpeter@597
   678
    /// and \ref upperMap() separately.
kpeter@597
   679
    ///
kpeter@597
   680
    /// \return <tt>(*this)</tt>
kpeter@597
   681
    template <typename LOWER, typename UPPER>
kpeter@597
   682
    NetworkSimplex& boundMaps(const LOWER& lower, const UPPER& upper) {
kpeter@597
   683
      return lowerMap(lower).upperMap(upper);
kpeter@597
   684
    }
kpeter@597
   685
kpeter@597
   686
    /// \brief Set the costs of the arcs.
kpeter@597
   687
    ///
kpeter@597
   688
    /// This function sets the costs of the arcs.
kpeter@597
   689
    /// If it is not used before calling \ref run(), the costs
kpeter@597
   690
    /// will be set to \c 1 on all arcs.
kpeter@597
   691
    ///
kpeter@597
   692
    /// \param map An arc map storing the costs.
kpeter@597
   693
    /// Its \c Value type must be convertible to the \c Value type
kpeter@597
   694
    /// of the algorithm.
kpeter@597
   695
    ///
kpeter@597
   696
    /// \return <tt>(*this)</tt>
kpeter@597
   697
    template<typename COST>
kpeter@597
   698
    NetworkSimplex& costMap(const COST& map) {
kpeter@597
   699
      delete _pcost;
kpeter@597
   700
      _pcost = new ValueArcMap(_graph);
kpeter@597
   701
      for (ArcIt a(_graph); a != INVALID; ++a) {
kpeter@597
   702
        (*_pcost)[a] = map[a];
kpeter@597
   703
      }
kpeter@597
   704
      return *this;
kpeter@597
   705
    }
kpeter@597
   706
kpeter@597
   707
    /// \brief Set the supply values of the nodes.
kpeter@597
   708
    ///
kpeter@597
   709
    /// This function sets the supply values of the nodes.
kpeter@597
   710
    /// If neither this function nor \ref stSupply() is used before
kpeter@597
   711
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@597
   712
    /// (It makes sense only if non-zero lower bounds are given.)
kpeter@597
   713
    ///
kpeter@597
   714
    /// \param map A node map storing the supply values.
kpeter@597
   715
    /// Its \c Value type must be convertible to the \c Value type
kpeter@597
   716
    /// of the algorithm.
kpeter@597
   717
    ///
kpeter@597
   718
    /// \return <tt>(*this)</tt>
kpeter@597
   719
    template<typename SUP>
kpeter@597
   720
    NetworkSimplex& supplyMap(const SUP& map) {
kpeter@597
   721
      delete _psupply;
kpeter@597
   722
      _pstsup = false;
kpeter@597
   723
      _psupply = new ValueNodeMap(_graph);
kpeter@597
   724
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@597
   725
        (*_psupply)[n] = map[n];
kpeter@597
   726
      }
kpeter@597
   727
      return *this;
kpeter@597
   728
    }
kpeter@597
   729
kpeter@597
   730
    /// \brief Set single source and target nodes and a supply value.
kpeter@597
   731
    ///
kpeter@597
   732
    /// This function sets a single source node and a single target node
kpeter@597
   733
    /// and the required flow value.
kpeter@597
   734
    /// If neither this function nor \ref supplyMap() is used before
kpeter@597
   735
    /// calling \ref run(), the supply of each node will be set to zero.
kpeter@597
   736
    /// (It makes sense only if non-zero lower bounds are given.)
kpeter@597
   737
    ///
kpeter@597
   738
    /// \param s The source node.
kpeter@597
   739
    /// \param t The target node.
kpeter@597
   740
    /// \param k The required amount of flow from node \c s to node \c t
kpeter@597
   741
    /// (i.e. the supply of \c s and the demand of \c t).
kpeter@597
   742
    ///
kpeter@597
   743
    /// \return <tt>(*this)</tt>
kpeter@597
   744
    NetworkSimplex& stSupply(const Node& s, const Node& t, Value k) {
kpeter@597
   745
      delete _psupply;
kpeter@597
   746
      _psupply = NULL;
kpeter@597
   747
      _pstsup = true;
kpeter@597
   748
      _psource = s;
kpeter@597
   749
      _ptarget = t;
kpeter@597
   750
      _pstflow = k;
kpeter@597
   751
      return *this;
kpeter@597
   752
    }
kpeter@597
   753
kpeter@593
   754
    /// \brief Set the flow map.
kpeter@593
   755
    ///
kpeter@593
   756
    /// This function sets the flow map.
kpeter@597
   757
    /// If it is not used before calling \ref run(), an instance will
kpeter@597
   758
    /// be allocated automatically. The destructor deallocates this
kpeter@597
   759
    /// automatically allocated map, of course.
kpeter@593
   760
    ///
kpeter@593
   761
    /// \return <tt>(*this)</tt>
kpeter@597
   762
    NetworkSimplex& flowMap(FlowMap& map) {
kpeter@593
   763
      if (_local_flow) {
kpeter@595
   764
        delete _flow_map;
kpeter@593
   765
        _local_flow = false;
kpeter@593
   766
      }
kpeter@595
   767
      _flow_map = &map;
kpeter@593
   768
      return *this;
kpeter@593
   769
    }
kpeter@593
   770
kpeter@593
   771
    /// \brief Set the potential map.
kpeter@593
   772
    ///
kpeter@597
   773
    /// This function sets the potential map, which is used for storing
kpeter@597
   774
    /// the dual solution.
kpeter@597
   775
    /// If it is not used before calling \ref run(), an instance will
kpeter@597
   776
    /// be allocated automatically. The destructor deallocates this
kpeter@597
   777
    /// automatically allocated map, of course.
kpeter@593
   778
    ///
kpeter@593
   779
    /// \return <tt>(*this)</tt>
kpeter@597
   780
    NetworkSimplex& potentialMap(PotentialMap& map) {
kpeter@593
   781
      if (_local_potential) {
kpeter@595
   782
        delete _potential_map;
kpeter@593
   783
        _local_potential = false;
kpeter@593
   784
      }
kpeter@595
   785
      _potential_map = &map;
kpeter@593
   786
      return *this;
kpeter@593
   787
    }
kpeter@593
   788
kpeter@597
   789
    /// \name Execution Control
kpeter@597
   790
    /// The algorithm can be executed using \ref run().
kpeter@597
   791
kpeter@593
   792
    /// @{
kpeter@593
   793
kpeter@593
   794
    /// \brief Run the algorithm.
kpeter@593
   795
    ///
kpeter@593
   796
    /// This function runs the algorithm.
kpeter@597
   797
    /// The paramters can be specified using \ref lowerMap(),
kpeter@598
   798
    /// \ref upperMap(), \ref capacityMap(), \ref boundMaps(),
kpeter@597
   799
    /// \ref costMap(), \ref supplyMap() and \ref stSupply()
kpeter@597
   800
    /// functions. For example,
kpeter@597
   801
    /// \code
kpeter@597
   802
    ///   NetworkSimplex<ListDigraph> ns(graph);
kpeter@597
   803
    ///   ns.boundMaps(lower, upper).costMap(cost)
kpeter@597
   804
    ///     .supplyMap(sup).run();
kpeter@597
   805
    /// \endcode
kpeter@593
   806
    ///
kpeter@598
   807
    /// This function can be called more than once. All the parameters
kpeter@598
   808
    /// that have been given are kept for the next call, unless
kpeter@598
   809
    /// \ref reset() is called, thus only the modified parameters
kpeter@598
   810
    /// have to be set again. See \ref reset() for examples.
kpeter@598
   811
    ///
kpeter@597
   812
    /// \param pivot_rule The pivot rule that will be used during the
kpeter@597
   813
    /// algorithm. For more information see \ref PivotRule.
kpeter@593
   814
    ///
kpeter@593
   815
    /// \return \c true if a feasible flow can be found.
kpeter@597
   816
    bool run(PivotRule pivot_rule = BLOCK_SEARCH) {
kpeter@593
   817
      return init() && start(pivot_rule);
kpeter@593
   818
    }
kpeter@593
   819
kpeter@598
   820
    /// \brief Reset all the parameters that have been given before.
kpeter@598
   821
    ///
kpeter@598
   822
    /// This function resets all the paramaters that have been given
kpeter@598
   823
    /// using \ref lowerMap(), \ref upperMap(), \ref capacityMap(),
kpeter@598
   824
    /// \ref boundMaps(), \ref costMap(), \ref supplyMap() and
kpeter@598
   825
    /// \ref stSupply() functions before.
kpeter@598
   826
    ///
kpeter@598
   827
    /// It is useful for multiple run() calls. If this function is not
kpeter@598
   828
    /// used, all the parameters given before are kept for the next
kpeter@598
   829
    /// \ref run() call.
kpeter@598
   830
    ///
kpeter@598
   831
    /// For example,
kpeter@598
   832
    /// \code
kpeter@598
   833
    ///   NetworkSimplex<ListDigraph> ns(graph);
kpeter@598
   834
    ///
kpeter@598
   835
    ///   // First run
kpeter@598
   836
    ///   ns.lowerMap(lower).capacityMap(cap).costMap(cost)
kpeter@598
   837
    ///     .supplyMap(sup).run();
kpeter@598
   838
    ///
kpeter@598
   839
    ///   // Run again with modified cost map (reset() is not called,
kpeter@598
   840
    ///   // so only the cost map have to be set again)
kpeter@598
   841
    ///   cost[e] += 100;
kpeter@598
   842
    ///   ns.costMap(cost).run();
kpeter@598
   843
    ///
kpeter@598
   844
    ///   // Run again from scratch using reset()
kpeter@598
   845
    ///   // (the lower bounds will be set to zero on all arcs)
kpeter@598
   846
    ///   ns.reset();
kpeter@598
   847
    ///   ns.capacityMap(cap).costMap(cost)
kpeter@598
   848
    ///     .supplyMap(sup).run();
kpeter@598
   849
    /// \endcode
kpeter@598
   850
    ///
kpeter@598
   851
    /// \return <tt>(*this)</tt>
kpeter@598
   852
    NetworkSimplex& reset() {
kpeter@598
   853
      delete _plower;
kpeter@598
   854
      delete _pupper;
kpeter@598
   855
      delete _pcost;
kpeter@598
   856
      delete _psupply;
kpeter@598
   857
      _plower = NULL;
kpeter@598
   858
      _pupper = NULL;
kpeter@598
   859
      _pcost = NULL;
kpeter@598
   860
      _psupply = NULL;
kpeter@598
   861
      _pstsup = false;
kpeter@598
   862
      return *this;
kpeter@598
   863
    }
kpeter@598
   864
kpeter@593
   865
    /// @}
kpeter@593
   866
kpeter@593
   867
    /// \name Query Functions
kpeter@593
   868
    /// The results of the algorithm can be obtained using these
kpeter@593
   869
    /// functions.\n
kpeter@597
   870
    /// The \ref run() function must be called before using them.
kpeter@597
   871
kpeter@593
   872
    /// @{
kpeter@593
   873
kpeter@597
   874
    /// \brief Return the total cost of the found flow.
kpeter@597
   875
    ///
kpeter@597
   876
    /// This function returns the total cost of the found flow.
kpeter@597
   877
    /// The complexity of the function is \f$ O(e) \f$.
kpeter@597
   878
    ///
kpeter@597
   879
    /// \note The return type of the function can be specified as a
kpeter@597
   880
    /// template parameter. For example,
kpeter@597
   881
    /// \code
kpeter@597
   882
    ///   ns.totalCost<double>();
kpeter@597
   883
    /// \endcode
kpeter@597
   884
    /// It is useful if the total cost cannot be stored in the \c Value
kpeter@597
   885
    /// type of the algorithm, which is the default return type of the
kpeter@597
   886
    /// function.
kpeter@597
   887
    ///
kpeter@597
   888
    /// \pre \ref run() must be called before using this function.
kpeter@597
   889
    template <typename Num>
kpeter@597
   890
    Num totalCost() const {
kpeter@597
   891
      Num c = 0;
kpeter@597
   892
      if (_pcost) {
kpeter@597
   893
        for (ArcIt e(_graph); e != INVALID; ++e)
kpeter@597
   894
          c += (*_flow_map)[e] * (*_pcost)[e];
kpeter@597
   895
      } else {
kpeter@597
   896
        for (ArcIt e(_graph); e != INVALID; ++e)
kpeter@597
   897
          c += (*_flow_map)[e];
kpeter@597
   898
      }
kpeter@597
   899
      return c;
kpeter@597
   900
    }
kpeter@597
   901
kpeter@597
   902
#ifndef DOXYGEN
kpeter@597
   903
    Value totalCost() const {
kpeter@597
   904
      return totalCost<Value>();
kpeter@597
   905
    }
kpeter@597
   906
#endif
kpeter@597
   907
kpeter@597
   908
    /// \brief Return the flow on the given arc.
kpeter@597
   909
    ///
kpeter@597
   910
    /// This function returns the flow on the given arc.
kpeter@597
   911
    ///
kpeter@597
   912
    /// \pre \ref run() must be called before using this function.
kpeter@597
   913
    Value flow(const Arc& a) const {
kpeter@597
   914
      return (*_flow_map)[a];
kpeter@597
   915
    }
kpeter@597
   916
kpeter@593
   917
    /// \brief Return a const reference to the flow map.
kpeter@593
   918
    ///
kpeter@593
   919
    /// This function returns a const reference to an arc map storing
kpeter@593
   920
    /// the found flow.
kpeter@593
   921
    ///
kpeter@593
   922
    /// \pre \ref run() must be called before using this function.
kpeter@593
   923
    const FlowMap& flowMap() const {
kpeter@595
   924
      return *_flow_map;
kpeter@593
   925
    }
kpeter@593
   926
kpeter@597
   927
    /// \brief Return the potential (dual value) of the given node.
kpeter@597
   928
    ///
kpeter@597
   929
    /// This function returns the potential (dual value) of the
kpeter@597
   930
    /// given node.
kpeter@597
   931
    ///
kpeter@597
   932
    /// \pre \ref run() must be called before using this function.
kpeter@597
   933
    Value potential(const Node& n) const {
kpeter@597
   934
      return (*_potential_map)[n];
kpeter@597
   935
    }
kpeter@597
   936
kpeter@593
   937
    /// \brief Return a const reference to the potential map
kpeter@593
   938
    /// (the dual solution).
kpeter@593
   939
    ///
kpeter@593
   940
    /// This function returns a const reference to a node map storing
kpeter@597
   941
    /// the found potentials, which form the dual solution of the
kpeter@597
   942
    /// \ref min_cost_flow "minimum cost flow" problem.
kpeter@593
   943
    ///
kpeter@593
   944
    /// \pre \ref run() must be called before using this function.
kpeter@593
   945
    const PotentialMap& potentialMap() const {
kpeter@595
   946
      return *_potential_map;
kpeter@593
   947
    }
kpeter@593
   948
kpeter@593
   949
    /// @}
kpeter@593
   950
kpeter@593
   951
  private:
kpeter@593
   952
kpeter@593
   953
    // Initialize internal data structures
kpeter@593
   954
    bool init() {
kpeter@593
   955
      // Initialize result maps
kpeter@595
   956
      if (!_flow_map) {
kpeter@595
   957
        _flow_map = new FlowMap(_graph);
kpeter@593
   958
        _local_flow = true;
kpeter@593
   959
      }
kpeter@595
   960
      if (!_potential_map) {
kpeter@595
   961
        _potential_map = new PotentialMap(_graph);
kpeter@593
   962
        _local_potential = true;
kpeter@593
   963
      }
kpeter@593
   964
kpeter@593
   965
      // Initialize vectors
kpeter@595
   966
      _node_num = countNodes(_graph);
kpeter@595
   967
      _arc_num = countArcs(_graph);
kpeter@593
   968
      int all_node_num = _node_num + 1;
kpeter@595
   969
      int all_arc_num = _arc_num + _node_num;
kpeter@597
   970
      if (_node_num == 0) return false;
kpeter@593
   971
kpeter@595
   972
      _arc_ref.resize(_arc_num);
kpeter@595
   973
      _source.resize(all_arc_num);
kpeter@595
   974
      _target.resize(all_arc_num);
kpeter@593
   975
kpeter@595
   976
      _cap.resize(all_arc_num);
kpeter@595
   977
      _cost.resize(all_arc_num);
kpeter@593
   978
      _supply.resize(all_node_num);
kpeter@598
   979
      _flow.resize(all_arc_num);
kpeter@598
   980
      _pi.resize(all_node_num);
kpeter@593
   981
kpeter@593
   982
      _parent.resize(all_node_num);
kpeter@593
   983
      _pred.resize(all_node_num);
kpeter@595
   984
      _forward.resize(all_node_num);
kpeter@593
   985
      _thread.resize(all_node_num);
kpeter@596
   986
      _rev_thread.resize(all_node_num);
kpeter@596
   987
      _succ_num.resize(all_node_num);
kpeter@596
   988
      _last_succ.resize(all_node_num);
kpeter@598
   989
      _state.resize(all_arc_num);
kpeter@593
   990
kpeter@593
   991
      // Initialize node related data
kpeter@593
   992
      bool valid_supply = true;
kpeter@597
   993
      if (!_pstsup && !_psupply) {
kpeter@597
   994
        _pstsup = true;
kpeter@597
   995
        _psource = _ptarget = NodeIt(_graph);
kpeter@597
   996
        _pstflow = 0;
kpeter@597
   997
      }
kpeter@597
   998
      if (_psupply) {
kpeter@597
   999
        Value sum = 0;
kpeter@593
  1000
        int i = 0;
kpeter@595
  1001
        for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@593
  1002
          _node_id[n] = i;
kpeter@597
  1003
          _supply[i] = (*_psupply)[n];
kpeter@593
  1004
          sum += _supply[i];
kpeter@593
  1005
        }
kpeter@593
  1006
        valid_supply = (sum == 0);
kpeter@593
  1007
      } else {
kpeter@593
  1008
        int i = 0;
kpeter@595
  1009
        for (NodeIt n(_graph); n != INVALID; ++n, ++i) {
kpeter@593
  1010
          _node_id[n] = i;
kpeter@593
  1011
          _supply[i] = 0;
kpeter@593
  1012
        }
kpeter@597
  1013
        _supply[_node_id[_psource]] =  _pstflow;
kpeter@597
  1014
        _supply[_node_id[_ptarget]]   = -_pstflow;
kpeter@593
  1015
      }
kpeter@593
  1016
      if (!valid_supply) return false;
kpeter@593
  1017
kpeter@593
  1018
      // Set data for the artificial root node
kpeter@593
  1019
      _root = _node_num;
kpeter@593
  1020
      _parent[_root] = -1;
kpeter@593
  1021
      _pred[_root] = -1;
kpeter@593
  1022
      _thread[_root] = 0;
kpeter@596
  1023
      _rev_thread[0] = _root;
kpeter@596
  1024
      _succ_num[_root] = all_node_num;
kpeter@596
  1025
      _last_succ[_root] = _root - 1;
kpeter@593
  1026
      _supply[_root] = 0;
kpeter@593
  1027
      _pi[_root] = 0;
kpeter@593
  1028
kpeter@593
  1029
      // Store the arcs in a mixed order
kpeter@593
  1030
      int k = std::max(int(sqrt(_arc_num)), 10);
kpeter@593
  1031
      int i = 0;
kpeter@595
  1032
      for (ArcIt e(_graph); e != INVALID; ++e) {
kpeter@595
  1033
        _arc_ref[i] = e;
kpeter@593
  1034
        if ((i += k) >= _arc_num) i = (i % k) + 1;
kpeter@593
  1035
      }
kpeter@593
  1036
kpeter@593
  1037
      // Initialize arc maps
kpeter@597
  1038
      if (_pupper && _pcost) {
kpeter@597
  1039
        for (int i = 0; i != _arc_num; ++i) {
kpeter@597
  1040
          Arc e = _arc_ref[i];
kpeter@597
  1041
          _source[i] = _node_id[_graph.source(e)];
kpeter@597
  1042
          _target[i] = _node_id[_graph.target(e)];
kpeter@597
  1043
          _cap[i] = (*_pupper)[e];
kpeter@597
  1044
          _cost[i] = (*_pcost)[e];
kpeter@598
  1045
          _flow[i] = 0;
kpeter@598
  1046
          _state[i] = STATE_LOWER;
kpeter@597
  1047
        }
kpeter@597
  1048
      } else {
kpeter@597
  1049
        for (int i = 0; i != _arc_num; ++i) {
kpeter@597
  1050
          Arc e = _arc_ref[i];
kpeter@597
  1051
          _source[i] = _node_id[_graph.source(e)];
kpeter@597
  1052
          _target[i] = _node_id[_graph.target(e)];
kpeter@598
  1053
          _flow[i] = 0;
kpeter@598
  1054
          _state[i] = STATE_LOWER;
kpeter@597
  1055
        }
kpeter@597
  1056
        if (_pupper) {
kpeter@597
  1057
          for (int i = 0; i != _arc_num; ++i)
kpeter@597
  1058
            _cap[i] = (*_pupper)[_arc_ref[i]];
kpeter@597
  1059
        } else {
kpeter@597
  1060
          Value val = std::numeric_limits<Value>::max();
kpeter@597
  1061
          for (int i = 0; i != _arc_num; ++i)
kpeter@597
  1062
            _cap[i] = val;
kpeter@597
  1063
        }
kpeter@597
  1064
        if (_pcost) {
kpeter@597
  1065
          for (int i = 0; i != _arc_num; ++i)
kpeter@597
  1066
            _cost[i] = (*_pcost)[_arc_ref[i]];
kpeter@597
  1067
        } else {
kpeter@597
  1068
          for (int i = 0; i != _arc_num; ++i)
kpeter@597
  1069
            _cost[i] = 1;
kpeter@597
  1070
        }
kpeter@593
  1071
      }
kpeter@593
  1072
kpeter@593
  1073
      // Remove non-zero lower bounds
kpeter@597
  1074
      if (_plower) {
kpeter@593
  1075
        for (int i = 0; i != _arc_num; ++i) {
kpeter@597
  1076
          Value c = (*_plower)[_arc_ref[i]];
kpeter@593
  1077
          if (c != 0) {
kpeter@593
  1078
            _cap[i] -= c;
kpeter@593
  1079
            _supply[_source[i]] -= c;
kpeter@593
  1080
            _supply[_target[i]] += c;
kpeter@593
  1081
          }
kpeter@593
  1082
        }
kpeter@593
  1083
      }
kpeter@593
  1084
kpeter@593
  1085
      // Add artificial arcs and initialize the spanning tree data structure
kpeter@597
  1086
      Value max_cap = std::numeric_limits<Value>::max();
kpeter@597
  1087
      Value max_cost = std::numeric_limits<Value>::max() / 4;
kpeter@593
  1088
      for (int u = 0, e = _arc_num; u != _node_num; ++u, ++e) {
kpeter@593
  1089
        _thread[u] = u + 1;
kpeter@596
  1090
        _rev_thread[u + 1] = u;
kpeter@596
  1091
        _succ_num[u] = 1;
kpeter@596
  1092
        _last_succ[u] = u;
kpeter@593
  1093
        _parent[u] = _root;
kpeter@593
  1094
        _pred[u] = e;
kpeter@598
  1095
        _cost[e] = max_cost;
kpeter@598
  1096
        _cap[e] = max_cap;
kpeter@598
  1097
        _state[e] = STATE_TREE;
kpeter@593
  1098
        if (_supply[u] >= 0) {
kpeter@593
  1099
          _flow[e] = _supply[u];
kpeter@593
  1100
          _forward[u] = true;
kpeter@593
  1101
          _pi[u] = -max_cost;
kpeter@593
  1102
        } else {
kpeter@593
  1103
          _flow[e] = -_supply[u];
kpeter@593
  1104
          _forward[u] = false;
kpeter@593
  1105
          _pi[u] = max_cost;
kpeter@593
  1106
        }
kpeter@593
  1107
      }
kpeter@593
  1108
kpeter@593
  1109
      return true;
kpeter@593
  1110
    }
kpeter@593
  1111
kpeter@593
  1112
    // Find the join node
kpeter@593
  1113
    void findJoinNode() {
kpeter@595
  1114
      int u = _source[in_arc];
kpeter@595
  1115
      int v = _target[in_arc];
kpeter@593
  1116
      while (u != v) {
kpeter@596
  1117
        if (_succ_num[u] < _succ_num[v]) {
kpeter@596
  1118
          u = _parent[u];
kpeter@596
  1119
        } else {
kpeter@596
  1120
          v = _parent[v];
kpeter@596
  1121
        }
kpeter@593
  1122
      }
kpeter@593
  1123
      join = u;
kpeter@593
  1124
    }
kpeter@593
  1125
kpeter@593
  1126
    // Find the leaving arc of the cycle and returns true if the
kpeter@593
  1127
    // leaving arc is not the same as the entering arc
kpeter@593
  1128
    bool findLeavingArc() {
kpeter@593
  1129
      // Initialize first and second nodes according to the direction
kpeter@593
  1130
      // of the cycle
kpeter@595
  1131
      if (_state[in_arc] == STATE_LOWER) {
kpeter@595
  1132
        first  = _source[in_arc];
kpeter@595
  1133
        second = _target[in_arc];
kpeter@593
  1134
      } else {
kpeter@595
  1135
        first  = _target[in_arc];
kpeter@595
  1136
        second = _source[in_arc];
kpeter@593
  1137
      }
kpeter@595
  1138
      delta = _cap[in_arc];
kpeter@593
  1139
      int result = 0;
kpeter@597
  1140
      Value d;
kpeter@593
  1141
      int e;
kpeter@593
  1142
kpeter@593
  1143
      // Search the cycle along the path form the first node to the root
kpeter@593
  1144
      for (int u = first; u != join; u = _parent[u]) {
kpeter@593
  1145
        e = _pred[u];
kpeter@593
  1146
        d = _forward[u] ? _flow[e] : _cap[e] - _flow[e];
kpeter@593
  1147
        if (d < delta) {
kpeter@593
  1148
          delta = d;
kpeter@593
  1149
          u_out = u;
kpeter@593
  1150
          result = 1;
kpeter@593
  1151
        }
kpeter@593
  1152
      }
kpeter@593
  1153
      // Search the cycle along the path form the second node to the root
kpeter@593
  1154
      for (int u = second; u != join; u = _parent[u]) {
kpeter@593
  1155
        e = _pred[u];
kpeter@593
  1156
        d = _forward[u] ? _cap[e] - _flow[e] : _flow[e];
kpeter@593
  1157
        if (d <= delta) {
kpeter@593
  1158
          delta = d;
kpeter@593
  1159
          u_out = u;
kpeter@593
  1160
          result = 2;
kpeter@593
  1161
        }
kpeter@593
  1162
      }
kpeter@593
  1163
kpeter@593
  1164
      if (result == 1) {
kpeter@593
  1165
        u_in = first;
kpeter@593
  1166
        v_in = second;
kpeter@593
  1167
      } else {
kpeter@593
  1168
        u_in = second;
kpeter@593
  1169
        v_in = first;
kpeter@593
  1170
      }
kpeter@593
  1171
      return result != 0;
kpeter@593
  1172
    }
kpeter@593
  1173
kpeter@593
  1174
    // Change _flow and _state vectors
kpeter@593
  1175
    void changeFlow(bool change) {
kpeter@593
  1176
      // Augment along the cycle
kpeter@593
  1177
      if (delta > 0) {
kpeter@597
  1178
        Value val = _state[in_arc] * delta;
kpeter@595
  1179
        _flow[in_arc] += val;
kpeter@595
  1180
        for (int u = _source[in_arc]; u != join; u = _parent[u]) {
kpeter@593
  1181
          _flow[_pred[u]] += _forward[u] ? -val : val;
kpeter@593
  1182
        }
kpeter@595
  1183
        for (int u = _target[in_arc]; u != join; u = _parent[u]) {
kpeter@593
  1184
          _flow[_pred[u]] += _forward[u] ? val : -val;
kpeter@593
  1185
        }
kpeter@593
  1186
      }
kpeter@593
  1187
      // Update the state of the entering and leaving arcs
kpeter@593
  1188
      if (change) {
kpeter@595
  1189
        _state[in_arc] = STATE_TREE;
kpeter@593
  1190
        _state[_pred[u_out]] =
kpeter@593
  1191
          (_flow[_pred[u_out]] == 0) ? STATE_LOWER : STATE_UPPER;
kpeter@593
  1192
      } else {
kpeter@595
  1193
        _state[in_arc] = -_state[in_arc];
kpeter@593
  1194
      }
kpeter@593
  1195
    }
kpeter@593
  1196
kpeter@596
  1197
    // Update the tree structure
kpeter@596
  1198
    void updateTreeStructure() {
kpeter@596
  1199
      int u, w;
kpeter@596
  1200
      int old_rev_thread = _rev_thread[u_out];
kpeter@596
  1201
      int old_succ_num = _succ_num[u_out];
kpeter@596
  1202
      int old_last_succ = _last_succ[u_out];
kpeter@593
  1203
      v_out = _parent[u_out];
kpeter@593
  1204
kpeter@596
  1205
      u = _last_succ[u_in];  // the last successor of u_in
kpeter@596
  1206
      right = _thread[u];    // the node after it
kpeter@596
  1207
kpeter@596
  1208
      // Handle the case when old_rev_thread equals to v_in
kpeter@596
  1209
      // (it also means that join and v_out coincide)
kpeter@596
  1210
      if (old_rev_thread == v_in) {
kpeter@596
  1211
        last = _thread[_last_succ[u_out]];
kpeter@596
  1212
      } else {
kpeter@596
  1213
        last = _thread[v_in];
kpeter@593
  1214
      }
kpeter@593
  1215
kpeter@596
  1216
      // Update _thread and _parent along the stem nodes (i.e. the nodes
kpeter@596
  1217
      // between u_in and u_out, whose parent have to be changed)
kpeter@593
  1218
      _thread[v_in] = stem = u_in;
kpeter@596
  1219
      _dirty_revs.clear();
kpeter@596
  1220
      _dirty_revs.push_back(v_in);
kpeter@593
  1221
      par_stem = v_in;
kpeter@593
  1222
      while (stem != u_out) {
kpeter@596
  1223
        // Insert the next stem node into the thread list
kpeter@596
  1224
        new_stem = _parent[stem];
kpeter@596
  1225
        _thread[u] = new_stem;
kpeter@596
  1226
        _dirty_revs.push_back(u);
kpeter@593
  1227
kpeter@596
  1228
        // Remove the subtree of stem from the thread list
kpeter@596
  1229
        w = _rev_thread[stem];
kpeter@596
  1230
        _thread[w] = right;
kpeter@596
  1231
        _rev_thread[right] = w;
kpeter@593
  1232
kpeter@596
  1233
        // Change the parent node and shift stem nodes
kpeter@593
  1234
        _parent[stem] = par_stem;
kpeter@593
  1235
        par_stem = stem;
kpeter@593
  1236
        stem = new_stem;
kpeter@593
  1237
kpeter@596
  1238
        // Update u and right
kpeter@596
  1239
        u = _last_succ[stem] == _last_succ[par_stem] ?
kpeter@596
  1240
          _rev_thread[par_stem] : _last_succ[stem];
kpeter@593
  1241
        right = _thread[u];
kpeter@593
  1242
      }
kpeter@593
  1243
      _parent[u_out] = par_stem;
kpeter@593
  1244
      _thread[u] = last;
kpeter@596
  1245
      _rev_thread[last] = u;
kpeter@596
  1246
      _last_succ[u_out] = u;
kpeter@593
  1247
kpeter@596
  1248
      // Remove the subtree of u_out from the thread list except for
kpeter@596
  1249
      // the case when old_rev_thread equals to v_in
kpeter@596
  1250
      // (it also means that join and v_out coincide)
kpeter@596
  1251
      if (old_rev_thread != v_in) {
kpeter@596
  1252
        _thread[old_rev_thread] = right;
kpeter@596
  1253
        _rev_thread[right] = old_rev_thread;
kpeter@596
  1254
      }
kpeter@596
  1255
kpeter@596
  1256
      // Update _rev_thread using the new _thread values
kpeter@596
  1257
      for (int i = 0; i < int(_dirty_revs.size()); ++i) {
kpeter@596
  1258
        u = _dirty_revs[i];
kpeter@596
  1259
        _rev_thread[_thread[u]] = u;
kpeter@596
  1260
      }
kpeter@596
  1261
kpeter@596
  1262
      // Update _pred, _forward, _last_succ and _succ_num for the
kpeter@596
  1263
      // stem nodes from u_out to u_in
kpeter@596
  1264
      int tmp_sc = 0, tmp_ls = _last_succ[u_out];
kpeter@596
  1265
      u = u_out;
kpeter@596
  1266
      while (u != u_in) {
kpeter@596
  1267
        w = _parent[u];
kpeter@596
  1268
        _pred[u] = _pred[w];
kpeter@596
  1269
        _forward[u] = !_forward[w];
kpeter@596
  1270
        tmp_sc += _succ_num[u] - _succ_num[w];
kpeter@596
  1271
        _succ_num[u] = tmp_sc;
kpeter@596
  1272
        _last_succ[w] = tmp_ls;
kpeter@596
  1273
        u = w;
kpeter@596
  1274
      }
kpeter@596
  1275
      _pred[u_in] = in_arc;
kpeter@596
  1276
      _forward[u_in] = (u_in == _source[in_arc]);
kpeter@596
  1277
      _succ_num[u_in] = old_succ_num;
kpeter@596
  1278
kpeter@596
  1279
      // Set limits for updating _last_succ form v_in and v_out
kpeter@596
  1280
      // towards the root
kpeter@596
  1281
      int up_limit_in = -1;
kpeter@596
  1282
      int up_limit_out = -1;
kpeter@596
  1283
      if (_last_succ[join] == v_in) {
kpeter@596
  1284
        up_limit_out = join;
kpeter@593
  1285
      } else {
kpeter@596
  1286
        up_limit_in = join;
kpeter@596
  1287
      }
kpeter@596
  1288
kpeter@596
  1289
      // Update _last_succ from v_in towards the root
kpeter@596
  1290
      for (u = v_in; u != up_limit_in && _last_succ[u] == v_in;
kpeter@596
  1291
           u = _parent[u]) {
kpeter@596
  1292
        _last_succ[u] = _last_succ[u_out];
kpeter@596
  1293
      }
kpeter@596
  1294
      // Update _last_succ from v_out towards the root
kpeter@596
  1295
      if (join != old_rev_thread && v_in != old_rev_thread) {
kpeter@596
  1296
        for (u = v_out; u != up_limit_out && _last_succ[u] == old_last_succ;
kpeter@596
  1297
             u = _parent[u]) {
kpeter@596
  1298
          _last_succ[u] = old_rev_thread;
kpeter@596
  1299
        }
kpeter@596
  1300
      } else {
kpeter@596
  1301
        for (u = v_out; u != up_limit_out && _last_succ[u] == old_last_succ;
kpeter@596
  1302
             u = _parent[u]) {
kpeter@596
  1303
          _last_succ[u] = _last_succ[u_out];
kpeter@596
  1304
        }
kpeter@596
  1305
      }
kpeter@596
  1306
kpeter@596
  1307
      // Update _succ_num from v_in to join
kpeter@596
  1308
      for (u = v_in; u != join; u = _parent[u]) {
kpeter@596
  1309
        _succ_num[u] += old_succ_num;
kpeter@596
  1310
      }
kpeter@596
  1311
      // Update _succ_num from v_out to join
kpeter@596
  1312
      for (u = v_out; u != join; u = _parent[u]) {
kpeter@596
  1313
        _succ_num[u] -= old_succ_num;
kpeter@593
  1314
      }
kpeter@593
  1315
    }
kpeter@593
  1316
kpeter@596
  1317
    // Update potentials
kpeter@596
  1318
    void updatePotential() {
kpeter@597
  1319
      Value sigma = _forward[u_in] ?
kpeter@593
  1320
        _pi[v_in] - _pi[u_in] - _cost[_pred[u_in]] :
kpeter@593
  1321
        _pi[v_in] - _pi[u_in] + _cost[_pred[u_in]];
kpeter@596
  1322
      if (_succ_num[u_in] > _node_num / 2) {
kpeter@596
  1323
        // Update in the upper subtree (which contains the root)
kpeter@596
  1324
        int before = _rev_thread[u_in];
kpeter@596
  1325
        int after = _thread[_last_succ[u_in]];
kpeter@596
  1326
        _thread[before] = after;
kpeter@596
  1327
        _pi[_root] -= sigma;
kpeter@596
  1328
        for (int u = _thread[_root]; u != _root; u = _thread[u]) {
kpeter@596
  1329
          _pi[u] -= sigma;
kpeter@596
  1330
        }
kpeter@596
  1331
        _thread[before] = u_in;
kpeter@596
  1332
      } else {
kpeter@596
  1333
        // Update in the lower subtree (which has been moved)
kpeter@596
  1334
        int end = _thread[_last_succ[u_in]];
kpeter@596
  1335
        for (int u = u_in; u != end; u = _thread[u]) {
kpeter@596
  1336
          _pi[u] += sigma;
kpeter@596
  1337
        }
kpeter@593
  1338
      }
kpeter@593
  1339
    }
kpeter@593
  1340
kpeter@593
  1341
    // Execute the algorithm
kpeter@597
  1342
    bool start(PivotRule pivot_rule) {
kpeter@593
  1343
      // Select the pivot rule implementation
kpeter@593
  1344
      switch (pivot_rule) {
kpeter@597
  1345
        case FIRST_ELIGIBLE:
kpeter@593
  1346
          return start<FirstEligiblePivotRule>();
kpeter@597
  1347
        case BEST_ELIGIBLE:
kpeter@593
  1348
          return start<BestEligiblePivotRule>();
kpeter@597
  1349
        case BLOCK_SEARCH:
kpeter@593
  1350
          return start<BlockSearchPivotRule>();
kpeter@597
  1351
        case CANDIDATE_LIST:
kpeter@593
  1352
          return start<CandidateListPivotRule>();
kpeter@597
  1353
        case ALTERING_LIST:
kpeter@593
  1354
          return start<AlteringListPivotRule>();
kpeter@593
  1355
      }
kpeter@593
  1356
      return false;
kpeter@593
  1357
    }
kpeter@593
  1358
kpeter@597
  1359
    template <typename PivotRuleImpl>
kpeter@593
  1360
    bool start() {
kpeter@597
  1361
      PivotRuleImpl pivot(*this);
kpeter@593
  1362
kpeter@597
  1363
      // Execute the Network Simplex algorithm
kpeter@593
  1364
      while (pivot.findEnteringArc()) {
kpeter@593
  1365
        findJoinNode();
kpeter@593
  1366
        bool change = findLeavingArc();
kpeter@593
  1367
        changeFlow(change);
kpeter@593
  1368
        if (change) {
kpeter@596
  1369
          updateTreeStructure();
kpeter@596
  1370
          updatePotential();
kpeter@593
  1371
        }
kpeter@593
  1372
      }
kpeter@593
  1373
kpeter@593
  1374
      // Check if the flow amount equals zero on all the artificial arcs
kpeter@593
  1375
      for (int e = _arc_num; e != _arc_num + _node_num; ++e) {
kpeter@593
  1376
        if (_flow[e] > 0) return false;
kpeter@593
  1377
      }
kpeter@593
  1378
kpeter@595
  1379
      // Copy flow values to _flow_map
kpeter@597
  1380
      if (_plower) {
kpeter@593
  1381
        for (int i = 0; i != _arc_num; ++i) {
kpeter@595
  1382
          Arc e = _arc_ref[i];
kpeter@597
  1383
          _flow_map->set(e, (*_plower)[e] + _flow[i]);
kpeter@593
  1384
        }
kpeter@593
  1385
      } else {
kpeter@593
  1386
        for (int i = 0; i != _arc_num; ++i) {
kpeter@595
  1387
          _flow_map->set(_arc_ref[i], _flow[i]);
kpeter@593
  1388
        }
kpeter@593
  1389
      }
kpeter@595
  1390
      // Copy potential values to _potential_map
kpeter@595
  1391
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@595
  1392
        _potential_map->set(n, _pi[_node_id[n]]);
kpeter@593
  1393
      }
kpeter@593
  1394
kpeter@593
  1395
      return true;
kpeter@593
  1396
    }
kpeter@593
  1397
kpeter@593
  1398
  }; //class NetworkSimplex
kpeter@593
  1399
kpeter@593
  1400
  ///@}
kpeter@593
  1401
kpeter@593
  1402
} //namespace lemon
kpeter@593
  1403
kpeter@593
  1404
#endif //LEMON_NETWORK_SIMPLEX_H