src/lemon/preflow.h
author alpar
Thu, 17 Mar 2005 10:43:57 +0000
changeset 1222 a3fb216a267d
parent 1164 80bb73097736
child 1227 01f668e3e168
permissions -rw-r--r--
The first step toward function type interface to Preflow alg:
- Naming changed to be closer in style to the BFD/DFS/Dijkstra triplet.
alpar@906
     1
/* -*- C++ -*-
alpar@921
     2
 * src/lemon/preflow.h - Part of LEMON, a generic C++ optimization library
alpar@906
     3
 *
alpar@1164
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@906
     5
 * (Egervary Combinatorial Optimization Research Group, EGRES).
alpar@906
     6
 *
alpar@906
     7
 * Permission to use, modify and distribute this software is granted
alpar@906
     8
 * provided that this copyright notice appears in all copies. For
alpar@906
     9
 * precise terms see the accompanying LICENSE file.
alpar@906
    10
 *
alpar@906
    11
 * This software is provided "AS IS" with no warranty of any kind,
alpar@906
    12
 * express or implied, and with no claim as to its suitability for any
alpar@906
    13
 * purpose.
alpar@906
    14
 *
alpar@906
    15
 */
alpar@906
    16
alpar@921
    17
#ifndef LEMON_PREFLOW_H
alpar@921
    18
#define LEMON_PREFLOW_H
jacint@836
    19
jacint@836
    20
#include <vector>
jacint@836
    21
#include <queue>
jacint@836
    22
alpar@921
    23
#include <lemon/invalid.h>
alpar@921
    24
#include <lemon/maps.h>
klao@977
    25
#include <lemon/graph_utils.h>
jacint@836
    26
jacint@836
    27
/// \file
jacint@836
    28
/// \ingroup flowalgs
alpar@874
    29
/// Implementation of the preflow algorithm.
jacint@836
    30
alpar@921
    31
namespace lemon {
jacint@836
    32
jacint@836
    33
  /// \addtogroup flowalgs
jacint@836
    34
  /// @{                                                   
jacint@836
    35
alpar@851
    36
  ///%Preflow algorithms class.
jacint@836
    37
jacint@836
    38
  ///This class provides an implementation of the \e preflow \e
jacint@836
    39
  ///algorithm producing a flow of maximum value in a directed
alpar@1222
    40
  ///graph. The preflow algorithms are the fastest known max flow algorithms
alpar@851
    41
  ///up to now. The \e source node, the \e target node, the \e
jacint@836
    42
  ///capacity of the edges and the \e starting \e flow value of the
jacint@836
    43
  ///edges should be passed to the algorithm through the
jacint@836
    44
  ///constructor. It is possible to change these quantities using the
alpar@1222
    45
  ///functions \ref source, \ref target, \ref setCap and \ref
jacint@836
    46
  ///setFlow.
jacint@836
    47
  ///
alpar@921
    48
  ///After running \ref lemon::Preflow::phase1() "phase1()"
alpar@921
    49
  ///or \ref lemon::Preflow::run() "run()", the maximal flow
jacint@836
    50
  ///value can be obtained by calling \ref flowValue(). The minimum
alpar@851
    51
  ///value cut can be written into a <tt>bool</tt> node map by
alpar@851
    52
  ///calling \ref minCut(). (\ref minMinCut() and \ref maxMinCut() writes
jacint@836
    53
  ///the inclusionwise minimum and maximum of the minimum value cuts,
jacint@836
    54
  ///resp.)
jacint@836
    55
  ///
jacint@836
    56
  ///\param Graph The directed graph type the algorithm runs on.
jacint@836
    57
  ///\param Num The number type of the capacities and the flow values.
alpar@1222
    58
  ///\param CapacityMap The capacity map type.
jacint@836
    59
  ///\param FlowMap The flow map type.
jacint@836
    60
  ///
jacint@836
    61
  ///\author Jacint Szabo 
jacint@836
    62
  template <typename Graph, typename Num,
alpar@1222
    63
	    typename CapacityMap=typename Graph::template EdgeMap<Num>,
jacint@836
    64
            typename FlowMap=typename Graph::template EdgeMap<Num> >
jacint@836
    65
  class Preflow {
jacint@836
    66
  protected:
jacint@836
    67
    typedef typename Graph::Node Node;
jacint@836
    68
    typedef typename Graph::NodeIt NodeIt;
jacint@836
    69
    typedef typename Graph::EdgeIt EdgeIt;
jacint@836
    70
    typedef typename Graph::OutEdgeIt OutEdgeIt;
jacint@836
    71
    typedef typename Graph::InEdgeIt InEdgeIt;
jacint@836
    72
jacint@836
    73
    typedef typename Graph::template NodeMap<Node> NNMap;
jacint@836
    74
    typedef typename std::vector<Node> VecNode;
jacint@836
    75
alpar@1222
    76
    const Graph* _g;
alpar@1222
    77
    Node _source;
alpar@1222
    78
    Node _target;
alpar@1222
    79
    const CapacityMap* _capacity;
alpar@1222
    80
    FlowMap* _flow;
alpar@1222
    81
    int _node_num;      //the number of nodes of G
jacint@836
    82
    
jacint@836
    83
    typename Graph::template NodeMap<int> level;  
jacint@836
    84
    typename Graph::template NodeMap<Num> excess;
jacint@836
    85
jacint@836
    86
    // constants used for heuristics
jacint@836
    87
    static const int H0=20;
jacint@836
    88
    static const int H1=1;
jacint@836
    89
jacint@836
    90
    public:
jacint@836
    91
jacint@836
    92
    ///Indicates the property of the starting flow map.
jacint@836
    93
alpar@1222
    94
    ///Indicates the property of the starting flow map.
alpar@1222
    95
    ///The meanings are as follows:
jacint@836
    96
    ///- \c ZERO_FLOW: constant zero flow
jacint@836
    97
    ///- \c GEN_FLOW: any flow, i.e. the sum of the in-flows equals to
jacint@836
    98
    ///the sum of the out-flows in every node except the \e source and
jacint@836
    99
    ///the \e target.
jacint@836
   100
    ///- \c PRE_FLOW: any preflow, i.e. the sum of the in-flows is at 
jacint@836
   101
    ///least the sum of the out-flows in every node except the \e source.
alpar@911
   102
    ///- \c NO_FLOW: indicates an unspecified edge map. \c flow will be 
alpar@911
   103
    ///set to the constant zero flow in the beginning of
alpar@911
   104
    ///the algorithm in this case.
jacint@836
   105
    ///
jacint@836
   106
    enum FlowEnum{
jacint@836
   107
      NO_FLOW,
jacint@836
   108
      ZERO_FLOW,
jacint@836
   109
      GEN_FLOW,
jacint@836
   110
      PRE_FLOW
jacint@836
   111
    };
jacint@836
   112
jacint@836
   113
    ///Indicates the state of the preflow algorithm.
jacint@836
   114
alpar@1222
   115
    ///Indicates the state of the preflow algorithm.
alpar@1222
   116
    ///The meanings are as follows:
alpar@1222
   117
    ///- \c AFTER_NOTHING: before running the algorithm or
alpar@1222
   118
    ///  at an unspecified state.
jacint@836
   119
    ///- \c AFTER_PREFLOW_PHASE_1: right after running \c phase1
jacint@836
   120
    ///- \c AFTER_PREFLOW_PHASE_2: after running \ref phase2()
jacint@836
   121
    ///
jacint@836
   122
    enum StatusEnum {
jacint@836
   123
      AFTER_NOTHING,
jacint@836
   124
      AFTER_PREFLOW_PHASE_1,      
jacint@836
   125
      AFTER_PREFLOW_PHASE_2
jacint@836
   126
    };
jacint@836
   127
    
jacint@836
   128
    protected: 
jacint@836
   129
      FlowEnum flow_prop;
jacint@836
   130
    StatusEnum status; // Do not needle this flag only if necessary.
jacint@836
   131
    
jacint@836
   132
  public: 
jacint@836
   133
    ///The constructor of the class.
jacint@836
   134
jacint@836
   135
    ///The constructor of the class. 
jacint@836
   136
    ///\param _G The directed graph the algorithm runs on. 
jacint@836
   137
    ///\param _s The source node.
jacint@836
   138
    ///\param _t The target node.
alpar@1222
   139
    ///\param _cap The capacity of the edges. 
alpar@1222
   140
    ///\param _f The flow of the edges. 
jacint@836
   141
    ///Except the graph, all of these parameters can be reset by
alpar@1222
   142
    ///calling \ref source, \ref target, \ref setCap and \ref
jacint@836
   143
    ///setFlow, resp.
alpar@1222
   144
      Preflow(const Graph& _gr, Node _s, Node _t, 
alpar@1222
   145
	      const CapacityMap& _cap, FlowMap& _f) :
alpar@1222
   146
	_g(&_gr), _source(_s), _target(_t), _capacity(&_cap),
alpar@1222
   147
	_flow(&_f), _node_num(countNodes(_gr)), level(_gr), excess(_gr,0), 
jacint@836
   148
	flow_prop(NO_FLOW), status(AFTER_NOTHING) { }
jacint@836
   149
jacint@836
   150
jacint@836
   151
                                                                              
jacint@836
   152
    ///Runs the preflow algorithm.  
jacint@836
   153
alpar@851
   154
    ///Runs the preflow algorithm.
alpar@851
   155
    ///
jacint@836
   156
    void run() {
jacint@836
   157
      phase1(flow_prop);
jacint@836
   158
      phase2();
jacint@836
   159
    }
jacint@836
   160
    
jacint@836
   161
    ///Runs the preflow algorithm.  
jacint@836
   162
    
jacint@836
   163
    ///Runs the preflow algorithm. 
jacint@836
   164
    ///\pre The starting flow map must be
jacint@836
   165
    /// - a constant zero flow if \c fp is \c ZERO_FLOW,
jacint@836
   166
    /// - an arbitrary flow if \c fp is \c GEN_FLOW,
jacint@836
   167
    /// - an arbitrary preflow if \c fp is \c PRE_FLOW,
jacint@836
   168
    /// - any map if \c fp is NO_FLOW.
jacint@836
   169
    ///If the starting flow map is a flow or a preflow then 
jacint@836
   170
    ///the algorithm terminates faster.
jacint@836
   171
    void run(FlowEnum fp) {
jacint@836
   172
      flow_prop=fp;
jacint@836
   173
      run();
jacint@836
   174
    }
jacint@836
   175
      
jacint@836
   176
    ///Runs the first phase of the preflow algorithm.
jacint@836
   177
jacint@920
   178
    ///The preflow algorithm consists of two phases, this method runs
jacint@920
   179
    ///the first phase. After the first phase the maximum flow value
jacint@920
   180
    ///and a minimum value cut can already be computed, though a
jacint@920
   181
    ///maximum flow is not yet obtained. So after calling this method
jacint@920
   182
    ///\ref flowValue returns the value of a maximum flow and \ref
jacint@920
   183
    ///minCut returns a minimum cut.     
jacint@920
   184
    ///\warning \ref minMinCut and \ref maxMinCut do not give minimum
jacint@920
   185
    ///value cuts unless calling \ref phase2.  
jacint@920
   186
    ///\pre The starting flow must be 
jacint@920
   187
    ///- a constant zero flow if \c fp is \c ZERO_FLOW, 
jacint@920
   188
    ///- an arbitary flow if \c fp is \c GEN_FLOW, 
jacint@920
   189
    ///- an arbitary preflow if \c fp is \c PRE_FLOW, 
jacint@920
   190
    ///- any map if \c fp is NO_FLOW.
jacint@836
   191
    void phase1(FlowEnum fp)
jacint@836
   192
    {
jacint@836
   193
      flow_prop=fp;
jacint@836
   194
      phase1();
jacint@836
   195
    }
jacint@836
   196
jacint@836
   197
    
jacint@836
   198
    ///Runs the first phase of the preflow algorithm.
jacint@836
   199
jacint@920
   200
    ///The preflow algorithm consists of two phases, this method runs
jacint@920
   201
    ///the first phase. After the first phase the maximum flow value
jacint@920
   202
    ///and a minimum value cut can already be computed, though a
jacint@920
   203
    ///maximum flow is not yet obtained. So after calling this method
jacint@920
   204
    ///\ref flowValue returns the value of a maximum flow and \ref
jacint@920
   205
    ///minCut returns a minimum cut.
alpar@911
   206
    ///\warning \ref minCut(), \ref minMinCut() and \ref maxMinCut() do not
alpar@911
   207
    ///give minimum value cuts unless calling \ref phase2().
jacint@836
   208
    void phase1()
jacint@836
   209
    {
alpar@1222
   210
      int heur0=(int)(H0*_node_num);  //time while running 'bound decrease'
alpar@1222
   211
      int heur1=(int)(H1*_node_num);  //time while running 'highest label'
jacint@836
   212
      int heur=heur1;         //starting time interval (#of relabels)
jacint@836
   213
      int numrelabel=0;
jacint@836
   214
jacint@836
   215
      bool what_heur=1;
jacint@836
   216
      //It is 0 in case 'bound decrease' and 1 in case 'highest label'
jacint@836
   217
jacint@836
   218
      bool end=false;
jacint@836
   219
      //Needed for 'bound decrease', true means no active 
jacint@836
   220
      //nodes are above bound b.
jacint@836
   221
alpar@1222
   222
      int k=_node_num-2;  //bound on the highest level under n containing a node
jacint@836
   223
      int b=k;    //bound on the highest level under n of an active node
jacint@836
   224
alpar@1222
   225
      VecNode first(_node_num, INVALID);
alpar@1222
   226
      NNMap next(*_g, INVALID);
jacint@836
   227
alpar@1222
   228
      NNMap left(*_g, INVALID);
alpar@1222
   229
      NNMap right(*_g, INVALID);
alpar@1222
   230
      VecNode level_list(_node_num,INVALID);
jacint@836
   231
      //List of the nodes in level i<n, set to n.
jacint@836
   232
jacint@836
   233
      preflowPreproc(first, next, level_list, left, right);
jacint@836
   234
jacint@836
   235
      //Push/relabel on the highest level active nodes.
jacint@836
   236
      while ( true ) {
jacint@836
   237
	if ( b == 0 ) {
jacint@836
   238
	  if ( !what_heur && !end && k > 0 ) {
jacint@836
   239
	    b=k;
jacint@836
   240
	    end=true;
jacint@836
   241
	  } else break;
jacint@836
   242
	}
jacint@836
   243
jacint@836
   244
	if ( first[b]==INVALID ) --b;
jacint@836
   245
	else {
jacint@836
   246
	  end=false;
jacint@836
   247
	  Node w=first[b];
jacint@836
   248
	  first[b]=next[w];
jacint@836
   249
	  int newlevel=push(w, next, first);
jacint@836
   250
	  if ( excess[w] > 0 ) relabel(w, newlevel, first, next, level_list, 
jacint@836
   251
				       left, right, b, k, what_heur);
jacint@836
   252
jacint@836
   253
	  ++numrelabel;
jacint@836
   254
	  if ( numrelabel >= heur ) {
jacint@836
   255
	    numrelabel=0;
jacint@836
   256
	    if ( what_heur ) {
jacint@836
   257
	      what_heur=0;
jacint@836
   258
	      heur=heur0;
jacint@836
   259
	      end=false;
jacint@836
   260
	    } else {
jacint@836
   261
	      what_heur=1;
jacint@836
   262
	      heur=heur1;
jacint@836
   263
	      b=k;
jacint@836
   264
	    }
jacint@836
   265
	  }
jacint@836
   266
	}
jacint@836
   267
      }
jacint@836
   268
      flow_prop=PRE_FLOW;
jacint@836
   269
      status=AFTER_PREFLOW_PHASE_1;
jacint@836
   270
    }
jacint@836
   271
    // Heuristics:
jacint@836
   272
    //   2 phase
jacint@836
   273
    //   gap
jacint@836
   274
    //   list 'level_list' on the nodes on level i implemented by hand
jacint@836
   275
    //   stack 'active' on the active nodes on level i      
jacint@836
   276
    //   runs heuristic 'highest label' for H1*n relabels
alpar@1222
   277
    //   runs heuristic 'bound decrease' for H0*n relabels,
alpar@1222
   278
    //        starts with 'highest label'
jacint@836
   279
    //   Parameters H0 and H1 are initialized to 20 and 1.
jacint@836
   280
jacint@836
   281
jacint@836
   282
    ///Runs the second phase of the preflow algorithm.
jacint@836
   283
jacint@836
   284
    ///The preflow algorithm consists of two phases, this method runs
jacint@920
   285
    ///the second phase. After calling \ref phase1 and then \ref
jacint@920
   286
    ///phase2, \ref flow contains a maximum flow, \ref flowValue
jacint@920
   287
    ///returns the value of a maximum flow, \ref minCut returns a
jacint@920
   288
    ///minimum cut, while the methods \ref minMinCut and \ref
jacint@920
   289
    ///maxMinCut return the inclusionwise minimum and maximum cuts of
jacint@920
   290
    ///minimum value, resp.  \pre \ref phase1 must be called before.
jacint@836
   291
    void phase2()
jacint@836
   292
    {
jacint@836
   293
alpar@1222
   294
      int k=_node_num-2;  //bound on the highest level under n containing a node
jacint@836
   295
      int b=k;    //bound on the highest level under n of an active node
jacint@836
   296
jacint@836
   297
    
alpar@1222
   298
      VecNode first(_node_num, INVALID);
alpar@1222
   299
      NNMap next(*_g, INVALID); 
alpar@1222
   300
      level.set(_source,0);
jacint@836
   301
      std::queue<Node> bfs_queue;
alpar@1222
   302
      bfs_queue.push(_source);
jacint@836
   303
jacint@836
   304
      while ( !bfs_queue.empty() ) {
jacint@836
   305
jacint@836
   306
	Node v=bfs_queue.front();
jacint@836
   307
	bfs_queue.pop();
jacint@836
   308
	int l=level[v]+1;
jacint@836
   309
alpar@1222
   310
	for(InEdgeIt e(*_g,v); e!=INVALID; ++e) {
alpar@1222
   311
	  if ( (*_capacity)[e] <= (*_flow)[e] ) continue;
alpar@1222
   312
	  Node u=_g->source(e);
alpar@1222
   313
	  if ( level[u] >= _node_num ) {
jacint@836
   314
	    bfs_queue.push(u);
jacint@836
   315
	    level.set(u, l);
jacint@836
   316
	    if ( excess[u] > 0 ) {
jacint@836
   317
	      next.set(u,first[l]);
jacint@836
   318
	      first[l]=u;
jacint@836
   319
	    }
jacint@836
   320
	  }
jacint@836
   321
	}
jacint@836
   322
alpar@1222
   323
	for(OutEdgeIt e(*_g,v); e!=INVALID; ++e) {
alpar@1222
   324
	  if ( 0 >= (*_flow)[e] ) continue;
alpar@1222
   325
	  Node u=_g->target(e);
alpar@1222
   326
	  if ( level[u] >= _node_num ) {
jacint@836
   327
	    bfs_queue.push(u);
jacint@836
   328
	    level.set(u, l);
jacint@836
   329
	    if ( excess[u] > 0 ) {
jacint@836
   330
	      next.set(u,first[l]);
jacint@836
   331
	      first[l]=u;
jacint@836
   332
	    }
jacint@836
   333
	  }
jacint@836
   334
	}
jacint@836
   335
      }
alpar@1222
   336
      b=_node_num-2;
jacint@836
   337
jacint@836
   338
      while ( true ) {
jacint@836
   339
jacint@836
   340
	if ( b == 0 ) break;
jacint@836
   341
	if ( first[b]==INVALID ) --b;
jacint@836
   342
	else {
jacint@836
   343
	  Node w=first[b];
jacint@836
   344
	  first[b]=next[w];
jacint@836
   345
	  int newlevel=push(w,next, first);
jacint@836
   346
	  
jacint@836
   347
	  //relabel
jacint@836
   348
	  if ( excess[w] > 0 ) {
jacint@836
   349
	    level.set(w,++newlevel);
jacint@836
   350
	    next.set(w,first[newlevel]);
jacint@836
   351
	    first[newlevel]=w;
jacint@836
   352
	    b=newlevel;
jacint@836
   353
	  }
jacint@836
   354
	} 
jacint@836
   355
      } // while(true)
jacint@836
   356
      flow_prop=GEN_FLOW;
jacint@836
   357
      status=AFTER_PREFLOW_PHASE_2;
jacint@836
   358
    }
jacint@836
   359
jacint@836
   360
    /// Returns the value of the maximum flow.
jacint@836
   361
jacint@836
   362
    /// Returns the value of the maximum flow by returning the excess
alpar@911
   363
    /// of the target node \c t. This value equals to the value of
jacint@836
   364
    /// the maximum flow already after running \ref phase1.
jacint@836
   365
    Num flowValue() const {
alpar@1222
   366
      return excess[_target];
jacint@836
   367
    }
jacint@836
   368
jacint@836
   369
jacint@836
   370
    ///Returns a minimum value cut.
jacint@836
   371
jacint@836
   372
    ///Sets \c M to the characteristic vector of a minimum value
jacint@836
   373
    ///cut. This method can be called both after running \ref
jacint@836
   374
    ///phase1 and \ref phase2. It is much faster after
marci@849
   375
    ///\ref phase1.  \pre M should be a bool-valued node-map. \pre
alpar@911
   376
    ///If \ref minCut() is called after \ref phase2() then M should
jacint@836
   377
    ///be initialized to false.
jacint@836
   378
    template<typename _CutMap>
jacint@836
   379
    void minCut(_CutMap& M) const {
jacint@836
   380
      switch ( status ) {
jacint@836
   381
	case AFTER_PREFLOW_PHASE_1:
alpar@1222
   382
	for(NodeIt v(*_g); v!=INVALID; ++v) {
alpar@1222
   383
	  if (level[v] < _node_num) {
jacint@836
   384
	    M.set(v, false);
jacint@836
   385
	  } else {
jacint@836
   386
	    M.set(v, true);
jacint@836
   387
	  }
jacint@836
   388
	}
jacint@836
   389
	break;
jacint@836
   390
	case AFTER_PREFLOW_PHASE_2:
jacint@836
   391
	minMinCut(M);
jacint@836
   392
	break;
jacint@836
   393
	case AFTER_NOTHING:
jacint@836
   394
	break;
jacint@836
   395
      }
jacint@836
   396
    }
jacint@836
   397
jacint@836
   398
    ///Returns the inclusionwise minimum of the minimum value cuts.
jacint@836
   399
jacint@836
   400
    ///Sets \c M to the characteristic vector of the minimum value cut
jacint@836
   401
    ///which is inclusionwise minimum. It is computed by processing a
jacint@836
   402
    ///bfs from the source node \c s in the residual graph.  \pre M
jacint@836
   403
    ///should be a node map of bools initialized to false.  \pre \ref
jacint@836
   404
    ///phase2 should already be run.
jacint@836
   405
    template<typename _CutMap>
jacint@836
   406
    void minMinCut(_CutMap& M) const {
jacint@836
   407
jacint@836
   408
      std::queue<Node> queue;
alpar@1222
   409
      M.set(_source,true);
jacint@836
   410
      queue.push(s);
jacint@836
   411
      
jacint@836
   412
      while (!queue.empty()) {
jacint@836
   413
	Node w=queue.front();
jacint@836
   414
	queue.pop();
jacint@836
   415
	
alpar@1222
   416
	for(OutEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
alpar@1222
   417
	  Node v=_g->target(e);
alpar@1222
   418
	  if (!M[v] && (*_flow)[e] < (*_capacity)[e] ) {
jacint@836
   419
	    queue.push(v);
jacint@836
   420
	    M.set(v, true);
jacint@836
   421
	  }
jacint@836
   422
	}
jacint@836
   423
	
alpar@1222
   424
	for(InEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
alpar@1222
   425
	  Node v=_g->source(e);
alpar@1222
   426
	  if (!M[v] && (*_flow)[e] > 0 ) {
jacint@836
   427
	    queue.push(v);
jacint@836
   428
	    M.set(v, true);
jacint@836
   429
	  }
jacint@836
   430
	}
jacint@836
   431
      }
jacint@836
   432
    }
jacint@836
   433
    
jacint@836
   434
    ///Returns the inclusionwise maximum of the minimum value cuts.
jacint@836
   435
jacint@836
   436
    ///Sets \c M to the characteristic vector of the minimum value cut
jacint@836
   437
    ///which is inclusionwise maximum. It is computed by processing a
jacint@836
   438
    ///backward bfs from the target node \c t in the residual graph.
alpar@911
   439
    ///\pre \ref phase2() or run() should already be run.
jacint@836
   440
    template<typename _CutMap>
jacint@836
   441
    void maxMinCut(_CutMap& M) const {
jacint@836
   442
alpar@1222
   443
      for(NodeIt v(*_g) ; v!=INVALID; ++v) M.set(v, true);
jacint@836
   444
jacint@836
   445
      std::queue<Node> queue;
jacint@836
   446
alpar@1222
   447
      M.set(_target,false);
alpar@1222
   448
      queue.push(_target);
jacint@836
   449
jacint@836
   450
      while (!queue.empty()) {
jacint@836
   451
        Node w=queue.front();
jacint@836
   452
	queue.pop();
jacint@836
   453
alpar@1222
   454
	for(InEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
alpar@1222
   455
	  Node v=_g->source(e);
alpar@1222
   456
	  if (M[v] && (*_flow)[e] < (*_capacity)[e] ) {
jacint@836
   457
	    queue.push(v);
jacint@836
   458
	    M.set(v, false);
jacint@836
   459
	  }
jacint@836
   460
	}
jacint@836
   461
alpar@1222
   462
	for(OutEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
alpar@1222
   463
	  Node v=_g->target(e);
alpar@1222
   464
	  if (M[v] && (*_flow)[e] > 0 ) {
jacint@836
   465
	    queue.push(v);
jacint@836
   466
	    M.set(v, false);
jacint@836
   467
	  }
jacint@836
   468
	}
jacint@836
   469
      }
jacint@836
   470
    }
jacint@836
   471
jacint@836
   472
    ///Sets the source node to \c _s.
jacint@836
   473
jacint@836
   474
    ///Sets the source node to \c _s.
jacint@836
   475
    /// 
alpar@1222
   476
    void source(Node _s) { 
alpar@1222
   477
      _source=_s; 
jacint@836
   478
      if ( flow_prop != ZERO_FLOW ) flow_prop=NO_FLOW;
jacint@836
   479
      status=AFTER_NOTHING; 
jacint@836
   480
    }
jacint@836
   481
alpar@1222
   482
    ///Returns the source node.
alpar@1222
   483
alpar@1222
   484
    ///Returns the source node.
alpar@1222
   485
    /// 
alpar@1222
   486
    Node source() const { 
alpar@1222
   487
      return _source;
alpar@1222
   488
    }
alpar@1222
   489
jacint@836
   490
    ///Sets the target node to \c _t.
jacint@836
   491
jacint@836
   492
    ///Sets the target node to \c _t.
jacint@836
   493
    ///
alpar@1222
   494
    void target(Node _t) { 
alpar@1222
   495
      _target=_t; 
jacint@836
   496
      if ( flow_prop == GEN_FLOW ) flow_prop=PRE_FLOW;
jacint@836
   497
      status=AFTER_NOTHING; 
jacint@836
   498
    }
jacint@836
   499
alpar@1222
   500
    ///Returns the target node.
alpar@1222
   501
alpar@1222
   502
    ///Returns the target node.
alpar@1222
   503
    /// 
alpar@1222
   504
    Node target() const { 
alpar@1222
   505
      return _target;
alpar@1222
   506
    }
alpar@1222
   507
jacint@836
   508
    /// Sets the edge map of the capacities to _cap.
jacint@836
   509
jacint@836
   510
    /// Sets the edge map of the capacities to _cap.
jacint@836
   511
    /// 
alpar@1222
   512
    void capacityMap(const CapacityMap& _cap) { 
alpar@1222
   513
      _capacity=&_cap; 
jacint@836
   514
      status=AFTER_NOTHING; 
jacint@836
   515
    }
alpar@1222
   516
    /// Returns a reference to to capacity map.
alpar@1222
   517
alpar@1222
   518
    /// Returns a reference to to capacity map.
alpar@1222
   519
    /// 
alpar@1222
   520
    const CapacityMap &capacityMap() const { 
alpar@1222
   521
      return *_capacity;
alpar@1222
   522
    }
jacint@836
   523
jacint@836
   524
    /// Sets the edge map of the flows to _flow.
jacint@836
   525
jacint@836
   526
    /// Sets the edge map of the flows to _flow.
jacint@836
   527
    /// 
alpar@1222
   528
    void flowMap(FlowMap& _f) { 
alpar@1222
   529
      _flow=&_f; 
jacint@836
   530
      flow_prop=NO_FLOW;
jacint@836
   531
      status=AFTER_NOTHING; 
jacint@836
   532
    }
alpar@1222
   533
     
alpar@1222
   534
    /// Returns a reference to to flow map.
jacint@836
   535
alpar@1222
   536
    /// Returns a reference to to flow map.
alpar@1222
   537
    /// 
alpar@1222
   538
    const FlowMap &flowMap() const { 
alpar@1222
   539
      return *_flow;
alpar@1222
   540
    }
jacint@836
   541
jacint@836
   542
  private:
jacint@836
   543
jacint@836
   544
    int push(Node w, NNMap& next, VecNode& first) {
jacint@836
   545
jacint@836
   546
      int lev=level[w];
jacint@836
   547
      Num exc=excess[w];
alpar@1222
   548
      int newlevel=_node_num;       //bound on the next level of w
jacint@836
   549
alpar@1222
   550
      for(OutEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
alpar@1222
   551
	if ( (*_flow)[e] >= (*_capacity)[e] ) continue;
alpar@1222
   552
	Node v=_g->target(e);
jacint@836
   553
jacint@836
   554
	if( lev > level[v] ) { //Push is allowed now
jacint@836
   555
	  
alpar@1222
   556
	  if ( excess[v]<=0 && v!=_target && v!=_source ) {
jacint@836
   557
	    next.set(v,first[level[v]]);
jacint@836
   558
	    first[level[v]]=v;
jacint@836
   559
	  }
jacint@836
   560
alpar@1222
   561
	  Num cap=(*_capacity)[e];
alpar@1222
   562
	  Num flo=(*_flow)[e];
jacint@836
   563
	  Num remcap=cap-flo;
jacint@836
   564
	  
jacint@836
   565
	  if ( remcap >= exc ) { //A nonsaturating push.
jacint@836
   566
	    
alpar@1222
   567
	    _flow->set(e, flo+exc);
jacint@836
   568
	    excess.set(v, excess[v]+exc);
jacint@836
   569
	    exc=0;
jacint@836
   570
	    break;
jacint@836
   571
jacint@836
   572
	  } else { //A saturating push.
alpar@1222
   573
	    _flow->set(e, cap);
jacint@836
   574
	    excess.set(v, excess[v]+remcap);
jacint@836
   575
	    exc-=remcap;
jacint@836
   576
	  }
jacint@836
   577
	} else if ( newlevel > level[v] ) newlevel = level[v];
jacint@836
   578
      } //for out edges wv
jacint@836
   579
jacint@836
   580
      if ( exc > 0 ) {
alpar@1222
   581
	for(InEdgeIt e(*_g,w) ; e!=INVALID; ++e) {
jacint@836
   582
	  
alpar@1222
   583
	  if( (*_flow)[e] <= 0 ) continue;
alpar@1222
   584
	  Node v=_g->source(e);
jacint@836
   585
jacint@836
   586
	  if( lev > level[v] ) { //Push is allowed now
jacint@836
   587
alpar@1222
   588
	    if ( excess[v]<=0 && v!=_target && v!=_source ) {
jacint@836
   589
	      next.set(v,first[level[v]]);
jacint@836
   590
	      first[level[v]]=v;
jacint@836
   591
	    }
jacint@836
   592
alpar@1222
   593
	    Num flo=(*_flow)[e];
jacint@836
   594
jacint@836
   595
	    if ( flo >= exc ) { //A nonsaturating push.
jacint@836
   596
alpar@1222
   597
	      _flow->set(e, flo-exc);
jacint@836
   598
	      excess.set(v, excess[v]+exc);
jacint@836
   599
	      exc=0;
jacint@836
   600
	      break;
jacint@836
   601
	    } else {  //A saturating push.
jacint@836
   602
jacint@836
   603
	      excess.set(v, excess[v]+flo);
jacint@836
   604
	      exc-=flo;
alpar@1222
   605
	      _flow->set(e,0);
jacint@836
   606
	    }
jacint@836
   607
	  } else if ( newlevel > level[v] ) newlevel = level[v];
jacint@836
   608
	} //for in edges vw
jacint@836
   609
jacint@836
   610
      } // if w still has excess after the out edge for cycle
jacint@836
   611
jacint@836
   612
      excess.set(w, exc);
jacint@836
   613
      
jacint@836
   614
      return newlevel;
jacint@836
   615
    }
jacint@836
   616
    
jacint@836
   617
    
jacint@836
   618
    
jacint@836
   619
    void preflowPreproc(VecNode& first, NNMap& next, 
jacint@836
   620
			VecNode& level_list, NNMap& left, NNMap& right)
jacint@836
   621
    {
alpar@1222
   622
      for(NodeIt v(*_g); v!=INVALID; ++v) level.set(v,_node_num);
jacint@836
   623
      std::queue<Node> bfs_queue;
jacint@836
   624
      
jacint@836
   625
      if ( flow_prop == GEN_FLOW || flow_prop == PRE_FLOW ) {
jacint@836
   626
	//Reverse_bfs from t in the residual graph,
jacint@836
   627
	//to find the starting level.
alpar@1222
   628
	level.set(_target,0);
alpar@1222
   629
	bfs_queue.push(_target);
jacint@836
   630
	
jacint@836
   631
	while ( !bfs_queue.empty() ) {
jacint@836
   632
	  
jacint@836
   633
	  Node v=bfs_queue.front();
jacint@836
   634
	  bfs_queue.pop();
jacint@836
   635
	  int l=level[v]+1;
jacint@836
   636
	  
alpar@1222
   637
	  for(InEdgeIt e(*_g,v) ; e!=INVALID; ++e) {
alpar@1222
   638
	    if ( (*_capacity)[e] <= (*_flow)[e] ) continue;
alpar@1222
   639
	    Node w=_g->source(e);
alpar@1222
   640
	    if ( level[w] == _node_num && w != _source ) {
jacint@836
   641
	      bfs_queue.push(w);
jacint@836
   642
	      Node z=level_list[l];
jacint@836
   643
	      if ( z!=INVALID ) left.set(z,w);
jacint@836
   644
	      right.set(w,z);
jacint@836
   645
	      level_list[l]=w;
jacint@836
   646
	      level.set(w, l);
jacint@836
   647
	    }
jacint@836
   648
	  }
jacint@836
   649
	  
alpar@1222
   650
	  for(OutEdgeIt e(*_g,v) ; e!=INVALID; ++e) {
alpar@1222
   651
	    if ( 0 >= (*_flow)[e] ) continue;
alpar@1222
   652
	    Node w=_g->target(e);
alpar@1222
   653
	    if ( level[w] == _node_num && w != _source ) {
jacint@836
   654
	      bfs_queue.push(w);
jacint@836
   655
	      Node z=level_list[l];
jacint@836
   656
	      if ( z!=INVALID ) left.set(z,w);
jacint@836
   657
	      right.set(w,z);
jacint@836
   658
	      level_list[l]=w;
jacint@836
   659
	      level.set(w, l);
jacint@836
   660
	    }
jacint@836
   661
	  }
jacint@836
   662
	} //while
jacint@836
   663
      } //if
jacint@836
   664
jacint@836
   665
jacint@836
   666
      switch (flow_prop) {
jacint@836
   667
	case NO_FLOW:  
alpar@1222
   668
	for(EdgeIt e(*_g); e!=INVALID; ++e) _flow->set(e,0);
jacint@836
   669
	case ZERO_FLOW:
alpar@1222
   670
	for(NodeIt v(*_g); v!=INVALID; ++v) excess.set(v,0);
jacint@836
   671
	
jacint@836
   672
	//Reverse_bfs from t, to find the starting level.
alpar@1222
   673
	level.set(_target,0);
alpar@1222
   674
	bfs_queue.push(_target);
jacint@836
   675
	
jacint@836
   676
	while ( !bfs_queue.empty() ) {
jacint@836
   677
	  
jacint@836
   678
	  Node v=bfs_queue.front();
jacint@836
   679
	  bfs_queue.pop();
jacint@836
   680
	  int l=level[v]+1;
jacint@836
   681
	  
alpar@1222
   682
	  for(InEdgeIt e(*_g,v) ; e!=INVALID; ++e) {
alpar@1222
   683
	    Node w=_g->source(e);
alpar@1222
   684
	    if ( level[w] == _node_num && w != _source ) {
jacint@836
   685
	      bfs_queue.push(w);
jacint@836
   686
	      Node z=level_list[l];
jacint@836
   687
	      if ( z!=INVALID ) left.set(z,w);
jacint@836
   688
	      right.set(w,z);
jacint@836
   689
	      level_list[l]=w;
jacint@836
   690
	      level.set(w, l);
jacint@836
   691
	    }
jacint@836
   692
	  }
jacint@836
   693
	}
jacint@836
   694
	
jacint@836
   695
	//the starting flow
alpar@1222
   696
	for(OutEdgeIt e(*_g,_source) ; e!=INVALID; ++e) {
alpar@1222
   697
	  Num c=(*_capacity)[e];
jacint@836
   698
	  if ( c <= 0 ) continue;
alpar@1222
   699
	  Node w=_g->target(e);
alpar@1222
   700
	  if ( level[w] < _node_num ) {
alpar@1222
   701
	    if ( excess[w] <= 0 && w!=_target ) { //putting into the stack
jacint@836
   702
	      next.set(w,first[level[w]]);
jacint@836
   703
	      first[level[w]]=w;
jacint@836
   704
	    }
alpar@1222
   705
	    _flow->set(e, c);
jacint@836
   706
	    excess.set(w, excess[w]+c);
jacint@836
   707
	  }
jacint@836
   708
	}
jacint@836
   709
	break;
jacint@836
   710
jacint@836
   711
	case GEN_FLOW:
alpar@1222
   712
	for(NodeIt v(*_g); v!=INVALID; ++v) excess.set(v,0);
jacint@836
   713
	{
jacint@836
   714
	  Num exc=0;
alpar@1222
   715
	  for(InEdgeIt e(*_g,_target) ; e!=INVALID; ++e) exc+=(*_flow)[e];
alpar@1222
   716
	  for(OutEdgeIt e(*_g,_target) ; e!=INVALID; ++e) exc-=(*_flow)[e];
alpar@1222
   717
	  excess.set(_target,exc);
jacint@836
   718
	}
jacint@836
   719
jacint@836
   720
	//the starting flow
alpar@1222
   721
	for(OutEdgeIt e(*_g,_source); e!=INVALID; ++e)	{
alpar@1222
   722
	  Num rem=(*_capacity)[e]-(*_flow)[e];
jacint@836
   723
	  if ( rem <= 0 ) continue;
alpar@1222
   724
	  Node w=_g->target(e);
alpar@1222
   725
	  if ( level[w] < _node_num ) {
alpar@1222
   726
	    if ( excess[w] <= 0 && w!=_target ) { //putting into the stack
jacint@836
   727
	      next.set(w,first[level[w]]);
jacint@836
   728
	      first[level[w]]=w;
jacint@836
   729
	    }   
alpar@1222
   730
	    _flow->set(e, (*_capacity)[e]);
jacint@836
   731
	    excess.set(w, excess[w]+rem);
jacint@836
   732
	  }
jacint@836
   733
	}
jacint@836
   734
	
alpar@1222
   735
	for(InEdgeIt e(*_g,_source); e!=INVALID; ++e) {
alpar@1222
   736
	  if ( (*_flow)[e] <= 0 ) continue;
alpar@1222
   737
	  Node w=_g->source(e);
alpar@1222
   738
	  if ( level[w] < _node_num ) {
alpar@1222
   739
	    if ( excess[w] <= 0 && w!=_target ) {
jacint@836
   740
	      next.set(w,first[level[w]]);
jacint@836
   741
	      first[level[w]]=w;
jacint@836
   742
	    }  
alpar@1222
   743
	    excess.set(w, excess[w]+(*_flow)[e]);
alpar@1222
   744
	    _flow->set(e, 0);
jacint@836
   745
	  }
jacint@836
   746
	}
jacint@836
   747
	break;
jacint@836
   748
jacint@836
   749
	case PRE_FLOW:	
jacint@836
   750
	//the starting flow
alpar@1222
   751
	for(OutEdgeIt e(*_g,_source) ; e!=INVALID; ++e) {
alpar@1222
   752
	  Num rem=(*_capacity)[e]-(*_flow)[e];
jacint@836
   753
	  if ( rem <= 0 ) continue;
alpar@1222
   754
	  Node w=_g->target(e);
alpar@1222
   755
	  if ( level[w] < _node_num ) _flow->set(e, (*_capacity)[e]);
jacint@836
   756
	}
jacint@836
   757
	
alpar@1222
   758
	for(InEdgeIt e(*_g,_source) ; e!=INVALID; ++e) {
alpar@1222
   759
	  if ( (*_flow)[e] <= 0 ) continue;
alpar@1222
   760
	  Node w=_g->source(e);
alpar@1222
   761
	  if ( level[w] < _node_num ) _flow->set(e, 0);
jacint@836
   762
	}
jacint@836
   763
	
jacint@836
   764
	//computing the excess
alpar@1222
   765
	for(NodeIt w(*_g); w!=INVALID; ++w) {
jacint@836
   766
	  Num exc=0;
alpar@1222
   767
	  for(InEdgeIt e(*_g,w); e!=INVALID; ++e) exc+=(*_flow)[e];
alpar@1222
   768
	  for(OutEdgeIt e(*_g,w); e!=INVALID; ++e) exc-=(*_flow)[e];
jacint@836
   769
	  excess.set(w,exc);
jacint@836
   770
	  
jacint@836
   771
	  //putting the active nodes into the stack
jacint@836
   772
	  int lev=level[w];
alpar@1222
   773
	    if ( exc > 0 && lev < _node_num && Node(w) != _target ) {
jacint@836
   774
	      next.set(w,first[lev]);
jacint@836
   775
	      first[lev]=w;
jacint@836
   776
	    }
jacint@836
   777
	}
jacint@836
   778
	break;
jacint@836
   779
      } //switch
jacint@836
   780
    } //preflowPreproc
jacint@836
   781
jacint@836
   782
jacint@836
   783
    void relabel(Node w, int newlevel, VecNode& first, NNMap& next, 
jacint@836
   784
		 VecNode& level_list, NNMap& left,
jacint@836
   785
		 NNMap& right, int& b, int& k, bool what_heur )
jacint@836
   786
    {
jacint@836
   787
jacint@836
   788
      int lev=level[w];
jacint@836
   789
jacint@836
   790
      Node right_n=right[w];
jacint@836
   791
      Node left_n=left[w];
jacint@836
   792
jacint@836
   793
      //unlacing starts
jacint@836
   794
      if ( right_n!=INVALID ) {
jacint@836
   795
	if ( left_n!=INVALID ) {
jacint@836
   796
	  right.set(left_n, right_n);
jacint@836
   797
	  left.set(right_n, left_n);
jacint@836
   798
	} else {
jacint@836
   799
	  level_list[lev]=right_n;
jacint@836
   800
	  left.set(right_n, INVALID);
jacint@836
   801
	}
jacint@836
   802
      } else {
jacint@836
   803
	if ( left_n!=INVALID ) {
jacint@836
   804
	  right.set(left_n, INVALID);
jacint@836
   805
	} else {
jacint@836
   806
	  level_list[lev]=INVALID;
jacint@836
   807
	}
jacint@836
   808
      }
jacint@836
   809
      //unlacing ends
jacint@836
   810
jacint@836
   811
      if ( level_list[lev]==INVALID ) {
jacint@836
   812
jacint@836
   813
	//gapping starts
jacint@836
   814
	for (int i=lev; i!=k ; ) {
jacint@836
   815
	  Node v=level_list[++i];
jacint@836
   816
	  while ( v!=INVALID ) {
alpar@1222
   817
	    level.set(v,_node_num);
jacint@836
   818
	    v=right[v];
jacint@836
   819
	  }
jacint@836
   820
	  level_list[i]=INVALID;
jacint@836
   821
	  if ( !what_heur ) first[i]=INVALID;
jacint@836
   822
	}
jacint@836
   823
alpar@1222
   824
	level.set(w,_node_num);
jacint@836
   825
	b=lev-1;
jacint@836
   826
	k=b;
jacint@836
   827
	//gapping ends
jacint@836
   828
jacint@836
   829
      } else {
jacint@836
   830
alpar@1222
   831
	if ( newlevel == _node_num ) level.set(w,_node_num);
jacint@836
   832
	else {
jacint@836
   833
	  level.set(w,++newlevel);
jacint@836
   834
	  next.set(w,first[newlevel]);
jacint@836
   835
	  first[newlevel]=w;
jacint@836
   836
	  if ( what_heur ) b=newlevel;
jacint@836
   837
	  if ( k < newlevel ) ++k;      //now k=newlevel
jacint@836
   838
	  Node z=level_list[newlevel];
jacint@836
   839
	  if ( z!=INVALID ) left.set(z,w);
jacint@836
   840
	  right.set(w,z);
jacint@836
   841
	  left.set(w,INVALID);
jacint@836
   842
	  level_list[newlevel]=w;
jacint@836
   843
	}
jacint@836
   844
      }
jacint@836
   845
    } //relabel
jacint@836
   846
jacint@836
   847
  }; 
alpar@921
   848
} //namespace lemon
jacint@836
   849
alpar@921
   850
#endif //LEMON_PREFLOW_H
jacint@836
   851
jacint@836
   852
jacint@836
   853
jacint@836
   854