lemon/network_simplex.h
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 16:54:27 +0200
changeset 689 111698359429
parent 688 756a5ec551c8
child 690 f3792d5bb294
permissions -rw-r--r--
Less map copying in NetworkSimplex (#234)

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