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