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