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