lemon/preflow.h
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 10 Feb 2010 19:05:20 +0100
changeset 898 75c97c3786d6
parent 835 c92296660262
child 891 75e6020b19b1
permissions -rw-r--r--
Handle graph changes in the MCF algorithms (#327)

The reset() functions are renamed to resetParams() and the new reset()
functions handle the graph chnages, as well.
alpar@404
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@404
     2
 *
alpar@404
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@404
     4
 *
alpar@463
     5
 * Copyright (C) 2003-2009
alpar@404
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@404
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@404
     8
 *
alpar@404
     9
 * Permission to use, modify and distribute this software is granted
alpar@404
    10
 * provided that this copyright notice appears in all copies. For
alpar@404
    11
 * precise terms see the accompanying LICENSE file.
alpar@404
    12
 *
alpar@404
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@404
    14
 * express or implied, and with no claim as to its suitability for any
alpar@404
    15
 * purpose.
alpar@404
    16
 *
alpar@404
    17
 */
alpar@404
    18
alpar@404
    19
#ifndef LEMON_PREFLOW_H
alpar@404
    20
#define LEMON_PREFLOW_H
alpar@404
    21
alpar@404
    22
#include <lemon/tolerance.h>
alpar@404
    23
#include <lemon/elevator.h>
alpar@404
    24
alpar@404
    25
/// \file
alpar@404
    26
/// \ingroup max_flow
alpar@404
    27
/// \brief Implementation of the preflow algorithm.
alpar@404
    28
alpar@404
    29
namespace lemon {
alpar@404
    30
alpar@404
    31
  /// \brief Default traits class of Preflow class.
alpar@404
    32
  ///
alpar@404
    33
  /// Default traits class of Preflow class.
kpeter@525
    34
  /// \tparam GR Digraph type.
kpeter@606
    35
  /// \tparam CAP Capacity map type.
kpeter@606
    36
  template <typename GR, typename CAP>
alpar@404
    37
  struct PreflowDefaultTraits {
alpar@404
    38
kpeter@408
    39
    /// \brief The type of the digraph the algorithm runs on.
kpeter@525
    40
    typedef GR Digraph;
alpar@404
    41
alpar@404
    42
    /// \brief The type of the map that stores the arc capacities.
alpar@404
    43
    ///
alpar@404
    44
    /// The type of the map that stores the arc capacities.
alpar@404
    45
    /// It must meet the \ref concepts::ReadMap "ReadMap" concept.
kpeter@606
    46
    typedef CAP CapacityMap;
alpar@404
    47
kpeter@408
    48
    /// \brief The type of the flow values.
kpeter@688
    49
    typedef typename CapacityMap::Value Value;
alpar@404
    50
kpeter@408
    51
    /// \brief The type of the map that stores the flow values.
alpar@404
    52
    ///
kpeter@408
    53
    /// The type of the map that stores the flow values.
alpar@404
    54
    /// It must meet the \ref concepts::ReadWriteMap "ReadWriteMap" concept.
kpeter@760
    55
#ifdef DOXYGEN
kpeter@760
    56
    typedef GR::ArcMap<Value> FlowMap;
kpeter@760
    57
#else
kpeter@688
    58
    typedef typename Digraph::template ArcMap<Value> FlowMap;
kpeter@760
    59
#endif
alpar@404
    60
alpar@404
    61
    /// \brief Instantiates a FlowMap.
alpar@404
    62
    ///
alpar@404
    63
    /// This function instantiates a \ref FlowMap.
kpeter@657
    64
    /// \param digraph The digraph for which we would like to define
alpar@404
    65
    /// the flow map.
alpar@404
    66
    static FlowMap* createFlowMap(const Digraph& digraph) {
alpar@404
    67
      return new FlowMap(digraph);
alpar@404
    68
    }
alpar@404
    69
kpeter@408
    70
    /// \brief The elevator type used by Preflow algorithm.
alpar@404
    71
    ///
alpar@404
    72
    /// The elevator type used by Preflow algorithm.
alpar@404
    73
    ///
kpeter@760
    74
    /// \sa Elevator, LinkedElevator
kpeter@760
    75
#ifdef DOXYGEN
kpeter@760
    76
    typedef lemon::Elevator<GR, GR::Node> Elevator;
kpeter@760
    77
#else
kpeter@760
    78
    typedef lemon::Elevator<Digraph, typename Digraph::Node> Elevator;
kpeter@760
    79
#endif
alpar@404
    80
alpar@404
    81
    /// \brief Instantiates an Elevator.
alpar@404
    82
    ///
kpeter@408
    83
    /// This function instantiates an \ref Elevator.
kpeter@657
    84
    /// \param digraph The digraph for which we would like to define
alpar@404
    85
    /// the elevator.
alpar@404
    86
    /// \param max_level The maximum level of the elevator.
alpar@404
    87
    static Elevator* createElevator(const Digraph& digraph, int max_level) {
alpar@404
    88
      return new Elevator(digraph, max_level);
alpar@404
    89
    }
alpar@404
    90
alpar@404
    91
    /// \brief The tolerance used by the algorithm
alpar@404
    92
    ///
alpar@404
    93
    /// The tolerance used by the algorithm to handle inexact computation.
kpeter@688
    94
    typedef lemon::Tolerance<Value> Tolerance;
alpar@404
    95
alpar@404
    96
  };
alpar@404
    97
alpar@404
    98
alpar@404
    99
  /// \ingroup max_flow
alpar@404
   100
  ///
kpeter@408
   101
  /// \brief %Preflow algorithm class.
alpar@404
   102
  ///
kpeter@408
   103
  /// This class provides an implementation of Goldberg-Tarjan's \e preflow
kpeter@606
   104
  /// \e push-relabel algorithm producing a \ref max_flow
kpeter@802
   105
  /// "flow of maximum value" in a digraph \ref clrs01algorithms,
kpeter@802
   106
  /// \ref amo93networkflows, \ref goldberg88newapproach.
kpeter@606
   107
  /// The preflow algorithms are the fastest known maximum
kpeter@736
   108
  /// flow algorithms. The current implementation uses a mixture of the
alpar@404
   109
  /// \e "highest label" and the \e "bound decrease" heuristics.
alpar@404
   110
  /// The worst case time complexity of the algorithm is \f$O(n^2\sqrt{e})\f$.
alpar@404
   111
  ///
kpeter@408
   112
  /// The algorithm consists of two phases. After the first phase
kpeter@408
   113
  /// the maximum flow value and the minimum cut is obtained. The
kpeter@408
   114
  /// second phase constructs a feasible maximum flow on each arc.
alpar@404
   115
  ///
kpeter@889
   116
  /// \warning This implementation cannot handle infinite or very large
kpeter@889
   117
  /// capacities (e.g. the maximum value of \c CAP::Value).
kpeter@889
   118
  ///
kpeter@525
   119
  /// \tparam GR The type of the digraph the algorithm runs on.
kpeter@606
   120
  /// \tparam CAP The type of the capacity map. The default map
kpeter@525
   121
  /// type is \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
alpar@404
   122
#ifdef DOXYGEN
kpeter@606
   123
  template <typename GR, typename CAP, typename TR>
alpar@404
   124
#else
kpeter@525
   125
  template <typename GR,
kpeter@606
   126
            typename CAP = typename GR::template ArcMap<int>,
kpeter@606
   127
            typename TR = PreflowDefaultTraits<GR, CAP> >
alpar@404
   128
#endif
alpar@404
   129
  class Preflow {
alpar@404
   130
  public:
alpar@404
   131
kpeter@408
   132
    ///The \ref PreflowDefaultTraits "traits class" of the algorithm.
kpeter@525
   133
    typedef TR Traits;
kpeter@408
   134
    ///The type of the digraph the algorithm runs on.
alpar@404
   135
    typedef typename Traits::Digraph Digraph;
kpeter@408
   136
    ///The type of the capacity map.
alpar@404
   137
    typedef typename Traits::CapacityMap CapacityMap;
kpeter@408
   138
    ///The type of the flow values.
kpeter@688
   139
    typedef typename Traits::Value Value;
alpar@404
   140
kpeter@408
   141
    ///The type of the flow map.
alpar@404
   142
    typedef typename Traits::FlowMap FlowMap;
kpeter@408
   143
    ///The type of the elevator.
alpar@404
   144
    typedef typename Traits::Elevator Elevator;
kpeter@408
   145
    ///The type of the tolerance.
alpar@404
   146
    typedef typename Traits::Tolerance Tolerance;
alpar@404
   147
alpar@404
   148
  private:
alpar@404
   149
alpar@404
   150
    TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
alpar@404
   151
alpar@404
   152
    const Digraph& _graph;
alpar@404
   153
    const CapacityMap* _capacity;
alpar@404
   154
alpar@404
   155
    int _node_num;
alpar@404
   156
alpar@404
   157
    Node _source, _target;
alpar@404
   158
alpar@404
   159
    FlowMap* _flow;
alpar@404
   160
    bool _local_flow;
alpar@404
   161
alpar@404
   162
    Elevator* _level;
alpar@404
   163
    bool _local_level;
alpar@404
   164
kpeter@688
   165
    typedef typename Digraph::template NodeMap<Value> ExcessMap;
alpar@404
   166
    ExcessMap* _excess;
alpar@404
   167
alpar@404
   168
    Tolerance _tolerance;
alpar@404
   169
alpar@404
   170
    bool _phase;
alpar@404
   171
alpar@404
   172
alpar@404
   173
    void createStructures() {
alpar@404
   174
      _node_num = countNodes(_graph);
alpar@404
   175
alpar@404
   176
      if (!_flow) {
alpar@404
   177
        _flow = Traits::createFlowMap(_graph);
alpar@404
   178
        _local_flow = true;
alpar@404
   179
      }
alpar@404
   180
      if (!_level) {
alpar@404
   181
        _level = Traits::createElevator(_graph, _node_num);
alpar@404
   182
        _local_level = true;
alpar@404
   183
      }
alpar@404
   184
      if (!_excess) {
alpar@404
   185
        _excess = new ExcessMap(_graph);
alpar@404
   186
      }
alpar@404
   187
    }
alpar@404
   188
alpar@404
   189
    void destroyStructures() {
alpar@404
   190
      if (_local_flow) {
alpar@404
   191
        delete _flow;
alpar@404
   192
      }
alpar@404
   193
      if (_local_level) {
alpar@404
   194
        delete _level;
alpar@404
   195
      }
alpar@404
   196
      if (_excess) {
alpar@404
   197
        delete _excess;
alpar@404
   198
      }
alpar@404
   199
    }
alpar@404
   200
alpar@404
   201
  public:
alpar@404
   202
alpar@404
   203
    typedef Preflow Create;
alpar@404
   204
kpeter@408
   205
    ///\name Named Template Parameters
alpar@404
   206
alpar@404
   207
    ///@{
alpar@404
   208
kpeter@606
   209
    template <typename T>
alpar@406
   210
    struct SetFlowMapTraits : public Traits {
kpeter@606
   211
      typedef T FlowMap;
alpar@404
   212
      static FlowMap *createFlowMap(const Digraph&) {
alpar@405
   213
        LEMON_ASSERT(false, "FlowMap is not initialized");
alpar@405
   214
        return 0; // ignore warnings
alpar@404
   215
      }
alpar@404
   216
    };
alpar@404
   217
alpar@404
   218
    /// \brief \ref named-templ-param "Named parameter" for setting
alpar@404
   219
    /// FlowMap type
alpar@404
   220
    ///
alpar@404
   221
    /// \ref named-templ-param "Named parameter" for setting FlowMap
kpeter@408
   222
    /// type.
kpeter@606
   223
    template <typename T>
alpar@406
   224
    struct SetFlowMap
kpeter@606
   225
      : public Preflow<Digraph, CapacityMap, SetFlowMapTraits<T> > {
alpar@404
   226
      typedef Preflow<Digraph, CapacityMap,
kpeter@606
   227
                      SetFlowMapTraits<T> > Create;
alpar@404
   228
    };
alpar@404
   229
kpeter@606
   230
    template <typename T>
alpar@406
   231
    struct SetElevatorTraits : public Traits {
kpeter@606
   232
      typedef T Elevator;
alpar@404
   233
      static Elevator *createElevator(const Digraph&, int) {
alpar@405
   234
        LEMON_ASSERT(false, "Elevator is not initialized");
alpar@405
   235
        return 0; // ignore warnings
alpar@404
   236
      }
alpar@404
   237
    };
alpar@404
   238
alpar@404
   239
    /// \brief \ref named-templ-param "Named parameter" for setting
alpar@404
   240
    /// Elevator type
alpar@404
   241
    ///
alpar@404
   242
    /// \ref named-templ-param "Named parameter" for setting Elevator
kpeter@408
   243
    /// type. If this named parameter is used, then an external
kpeter@408
   244
    /// elevator object must be passed to the algorithm using the
kpeter@408
   245
    /// \ref elevator(Elevator&) "elevator()" function before calling
kpeter@408
   246
    /// \ref run() or \ref init().
kpeter@408
   247
    /// \sa SetStandardElevator
kpeter@606
   248
    template <typename T>
alpar@406
   249
    struct SetElevator
kpeter@606
   250
      : public Preflow<Digraph, CapacityMap, SetElevatorTraits<T> > {
alpar@404
   251
      typedef Preflow<Digraph, CapacityMap,
kpeter@606
   252
                      SetElevatorTraits<T> > Create;
alpar@404
   253
    };
alpar@404
   254
kpeter@606
   255
    template <typename T>
alpar@406
   256
    struct SetStandardElevatorTraits : public Traits {
kpeter@606
   257
      typedef T Elevator;
alpar@404
   258
      static Elevator *createElevator(const Digraph& digraph, int max_level) {
alpar@404
   259
        return new Elevator(digraph, max_level);
alpar@404
   260
      }
alpar@404
   261
    };
alpar@404
   262
alpar@404
   263
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@408
   264
    /// Elevator type with automatic allocation
alpar@404
   265
    ///
alpar@404
   266
    /// \ref named-templ-param "Named parameter" for setting Elevator
kpeter@408
   267
    /// type with automatic allocation.
kpeter@408
   268
    /// The Elevator should have standard constructor interface to be
kpeter@408
   269
    /// able to automatically created by the algorithm (i.e. the
kpeter@408
   270
    /// digraph and the maximum level should be passed to it).
kpeter@833
   271
    /// However, an external elevator object could also be passed to the
kpeter@408
   272
    /// algorithm with the \ref elevator(Elevator&) "elevator()" function
kpeter@408
   273
    /// before calling \ref run() or \ref init().
kpeter@408
   274
    /// \sa SetElevator
kpeter@606
   275
    template <typename T>
alpar@406
   276
    struct SetStandardElevator
alpar@404
   277
      : public Preflow<Digraph, CapacityMap,
kpeter@606
   278
                       SetStandardElevatorTraits<T> > {
alpar@404
   279
      typedef Preflow<Digraph, CapacityMap,
kpeter@606
   280
                      SetStandardElevatorTraits<T> > Create;
alpar@404
   281
    };
alpar@404
   282
alpar@404
   283
    /// @}
alpar@404
   284
alpar@404
   285
  protected:
alpar@404
   286
alpar@404
   287
    Preflow() {}
alpar@404
   288
alpar@404
   289
  public:
alpar@404
   290
alpar@404
   291
alpar@404
   292
    /// \brief The constructor of the class.
alpar@404
   293
    ///
alpar@404
   294
    /// The constructor of the class.
alpar@404
   295
    /// \param digraph The digraph the algorithm runs on.
alpar@404
   296
    /// \param capacity The capacity of the arcs.
alpar@404
   297
    /// \param source The source node.
alpar@404
   298
    /// \param target The target node.
alpar@404
   299
    Preflow(const Digraph& digraph, const CapacityMap& capacity,
kpeter@408
   300
            Node source, Node target)
alpar@404
   301
      : _graph(digraph), _capacity(&capacity),
alpar@404
   302
        _node_num(0), _source(source), _target(target),
alpar@404
   303
        _flow(0), _local_flow(false),
alpar@404
   304
        _level(0), _local_level(false),
alpar@404
   305
        _excess(0), _tolerance(), _phase() {}
alpar@404
   306
kpeter@408
   307
    /// \brief Destructor.
alpar@404
   308
    ///
alpar@404
   309
    /// Destructor.
alpar@404
   310
    ~Preflow() {
alpar@404
   311
      destroyStructures();
alpar@404
   312
    }
alpar@404
   313
alpar@404
   314
    /// \brief Sets the capacity map.
alpar@404
   315
    ///
alpar@404
   316
    /// Sets the capacity map.
kpeter@408
   317
    /// \return <tt>(*this)</tt>
alpar@404
   318
    Preflow& capacityMap(const CapacityMap& map) {
alpar@404
   319
      _capacity = &map;
alpar@404
   320
      return *this;
alpar@404
   321
    }
alpar@404
   322
alpar@404
   323
    /// \brief Sets the flow map.
alpar@404
   324
    ///
alpar@404
   325
    /// Sets the flow map.
kpeter@408
   326
    /// If you don't use this function before calling \ref run() or
kpeter@408
   327
    /// \ref init(), an instance will be allocated automatically.
kpeter@408
   328
    /// The destructor deallocates this automatically allocated map,
kpeter@408
   329
    /// of course.
kpeter@408
   330
    /// \return <tt>(*this)</tt>
alpar@404
   331
    Preflow& flowMap(FlowMap& map) {
alpar@404
   332
      if (_local_flow) {
alpar@404
   333
        delete _flow;
alpar@404
   334
        _local_flow = false;
alpar@404
   335
      }
alpar@404
   336
      _flow = &map;
alpar@404
   337
      return *this;
alpar@404
   338
    }
alpar@404
   339
kpeter@408
   340
    /// \brief Sets the source node.
alpar@404
   341
    ///
kpeter@408
   342
    /// Sets the source node.
kpeter@408
   343
    /// \return <tt>(*this)</tt>
kpeter@408
   344
    Preflow& source(const Node& node) {
kpeter@408
   345
      _source = node;
kpeter@408
   346
      return *this;
alpar@404
   347
    }
alpar@404
   348
kpeter@408
   349
    /// \brief Sets the target node.
alpar@404
   350
    ///
kpeter@408
   351
    /// Sets the target node.
kpeter@408
   352
    /// \return <tt>(*this)</tt>
kpeter@408
   353
    Preflow& target(const Node& node) {
kpeter@408
   354
      _target = node;
kpeter@408
   355
      return *this;
kpeter@408
   356
    }
kpeter@408
   357
kpeter@408
   358
    /// \brief Sets the elevator used by algorithm.
kpeter@408
   359
    ///
kpeter@408
   360
    /// Sets the elevator used by algorithm.
kpeter@408
   361
    /// If you don't use this function before calling \ref run() or
kpeter@408
   362
    /// \ref init(), an instance will be allocated automatically.
kpeter@408
   363
    /// The destructor deallocates this automatically allocated elevator,
kpeter@408
   364
    /// of course.
kpeter@408
   365
    /// \return <tt>(*this)</tt>
alpar@404
   366
    Preflow& elevator(Elevator& elevator) {
alpar@404
   367
      if (_local_level) {
alpar@404
   368
        delete _level;
alpar@404
   369
        _local_level = false;
alpar@404
   370
      }
alpar@404
   371
      _level = &elevator;
alpar@404
   372
      return *this;
alpar@404
   373
    }
alpar@404
   374
kpeter@408
   375
    /// \brief Returns a const reference to the elevator.
alpar@404
   376
    ///
kpeter@408
   377
    /// Returns a const reference to the elevator.
kpeter@408
   378
    ///
kpeter@408
   379
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   380
    /// using this function.
kpeter@437
   381
    const Elevator& elevator() const {
alpar@404
   382
      return *_level;
alpar@404
   383
    }
alpar@404
   384
kpeter@736
   385
    /// \brief Sets the tolerance used by the algorithm.
alpar@404
   386
    ///
kpeter@736
   387
    /// Sets the tolerance object used by the algorithm.
kpeter@736
   388
    /// \return <tt>(*this)</tt>
kpeter@735
   389
    Preflow& tolerance(const Tolerance& tolerance) {
alpar@404
   390
      _tolerance = tolerance;
alpar@404
   391
      return *this;
alpar@404
   392
    }
alpar@404
   393
kpeter@408
   394
    /// \brief Returns a const reference to the tolerance.
alpar@404
   395
    ///
kpeter@736
   396
    /// Returns a const reference to the tolerance object used by
kpeter@736
   397
    /// the algorithm.
alpar@404
   398
    const Tolerance& tolerance() const {
kpeter@735
   399
      return _tolerance;
alpar@404
   400
    }
alpar@404
   401
kpeter@408
   402
    /// \name Execution Control
kpeter@408
   403
    /// The simplest way to execute the preflow algorithm is to use
kpeter@408
   404
    /// \ref run() or \ref runMinCut().\n
kpeter@760
   405
    /// If you need better control on the initial solution or the execution,
kpeter@760
   406
    /// you have to call one of the \ref init() functions first, then
kpeter@408
   407
    /// \ref startFirstPhase() and if you need it \ref startSecondPhase().
alpar@404
   408
alpar@404
   409
    ///@{
alpar@404
   410
alpar@404
   411
    /// \brief Initializes the internal data structures.
alpar@404
   412
    ///
kpeter@408
   413
    /// Initializes the internal data structures and sets the initial
kpeter@408
   414
    /// flow to zero on each arc.
alpar@404
   415
    void init() {
alpar@404
   416
      createStructures();
alpar@404
   417
alpar@404
   418
      _phase = true;
alpar@404
   419
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@628
   420
        (*_excess)[n] = 0;
alpar@404
   421
      }
alpar@404
   422
alpar@404
   423
      for (ArcIt e(_graph); e != INVALID; ++e) {
alpar@404
   424
        _flow->set(e, 0);
alpar@404
   425
      }
alpar@404
   426
alpar@404
   427
      typename Digraph::template NodeMap<bool> reached(_graph, false);
alpar@404
   428
alpar@404
   429
      _level->initStart();
alpar@404
   430
      _level->initAddItem(_target);
alpar@404
   431
alpar@404
   432
      std::vector<Node> queue;
kpeter@628
   433
      reached[_source] = true;
alpar@404
   434
alpar@404
   435
      queue.push_back(_target);
kpeter@628
   436
      reached[_target] = true;
alpar@404
   437
      while (!queue.empty()) {
alpar@404
   438
        _level->initNewLevel();
alpar@404
   439
        std::vector<Node> nqueue;
alpar@404
   440
        for (int i = 0; i < int(queue.size()); ++i) {
alpar@404
   441
          Node n = queue[i];
alpar@404
   442
          for (InArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   443
            Node u = _graph.source(e);
alpar@404
   444
            if (!reached[u] && _tolerance.positive((*_capacity)[e])) {
kpeter@628
   445
              reached[u] = true;
alpar@404
   446
              _level->initAddItem(u);
alpar@404
   447
              nqueue.push_back(u);
alpar@404
   448
            }
alpar@404
   449
          }
alpar@404
   450
        }
alpar@404
   451
        queue.swap(nqueue);
alpar@404
   452
      }
alpar@404
   453
      _level->initFinish();
alpar@404
   454
alpar@404
   455
      for (OutArcIt e(_graph, _source); e != INVALID; ++e) {
alpar@404
   456
        if (_tolerance.positive((*_capacity)[e])) {
alpar@404
   457
          Node u = _graph.target(e);
alpar@404
   458
          if ((*_level)[u] == _level->maxLevel()) continue;
alpar@404
   459
          _flow->set(e, (*_capacity)[e]);
kpeter@628
   460
          (*_excess)[u] += (*_capacity)[e];
alpar@404
   461
          if (u != _target && !_level->active(u)) {
alpar@404
   462
            _level->activate(u);
alpar@404
   463
          }
alpar@404
   464
        }
alpar@404
   465
      }
alpar@404
   466
    }
alpar@404
   467
kpeter@408
   468
    /// \brief Initializes the internal data structures using the
kpeter@408
   469
    /// given flow map.
alpar@404
   470
    ///
alpar@404
   471
    /// Initializes the internal data structures and sets the initial
alpar@404
   472
    /// flow to the given \c flowMap. The \c flowMap should contain a
kpeter@408
   473
    /// flow or at least a preflow, i.e. at each node excluding the
kpeter@408
   474
    /// source node the incoming flow should greater or equal to the
alpar@404
   475
    /// outgoing flow.
kpeter@408
   476
    /// \return \c false if the given \c flowMap is not a preflow.
alpar@404
   477
    template <typename FlowMap>
kpeter@407
   478
    bool init(const FlowMap& flowMap) {
alpar@404
   479
      createStructures();
alpar@404
   480
alpar@404
   481
      for (ArcIt e(_graph); e != INVALID; ++e) {
alpar@404
   482
        _flow->set(e, flowMap[e]);
alpar@404
   483
      }
alpar@404
   484
alpar@404
   485
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@688
   486
        Value excess = 0;
alpar@404
   487
        for (InArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   488
          excess += (*_flow)[e];
alpar@404
   489
        }
alpar@404
   490
        for (OutArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   491
          excess -= (*_flow)[e];
alpar@404
   492
        }
alpar@404
   493
        if (excess < 0 && n != _source) return false;
kpeter@628
   494
        (*_excess)[n] = excess;
alpar@404
   495
      }
alpar@404
   496
alpar@404
   497
      typename Digraph::template NodeMap<bool> reached(_graph, false);
alpar@404
   498
alpar@404
   499
      _level->initStart();
alpar@404
   500
      _level->initAddItem(_target);
alpar@404
   501
alpar@404
   502
      std::vector<Node> queue;
kpeter@628
   503
      reached[_source] = true;
alpar@404
   504
alpar@404
   505
      queue.push_back(_target);
kpeter@628
   506
      reached[_target] = true;
alpar@404
   507
      while (!queue.empty()) {
alpar@404
   508
        _level->initNewLevel();
alpar@404
   509
        std::vector<Node> nqueue;
alpar@404
   510
        for (int i = 0; i < int(queue.size()); ++i) {
alpar@404
   511
          Node n = queue[i];
alpar@404
   512
          for (InArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   513
            Node u = _graph.source(e);
alpar@404
   514
            if (!reached[u] &&
alpar@404
   515
                _tolerance.positive((*_capacity)[e] - (*_flow)[e])) {
kpeter@628
   516
              reached[u] = true;
alpar@404
   517
              _level->initAddItem(u);
alpar@404
   518
              nqueue.push_back(u);
alpar@404
   519
            }
alpar@404
   520
          }
alpar@404
   521
          for (OutArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   522
            Node v = _graph.target(e);
alpar@404
   523
            if (!reached[v] && _tolerance.positive((*_flow)[e])) {
kpeter@628
   524
              reached[v] = true;
alpar@404
   525
              _level->initAddItem(v);
alpar@404
   526
              nqueue.push_back(v);
alpar@404
   527
            }
alpar@404
   528
          }
alpar@404
   529
        }
alpar@404
   530
        queue.swap(nqueue);
alpar@404
   531
      }
alpar@404
   532
      _level->initFinish();
alpar@404
   533
alpar@404
   534
      for (OutArcIt e(_graph, _source); e != INVALID; ++e) {
kpeter@688
   535
        Value rem = (*_capacity)[e] - (*_flow)[e];
alpar@404
   536
        if (_tolerance.positive(rem)) {
alpar@404
   537
          Node u = _graph.target(e);
alpar@404
   538
          if ((*_level)[u] == _level->maxLevel()) continue;
alpar@404
   539
          _flow->set(e, (*_capacity)[e]);
kpeter@628
   540
          (*_excess)[u] += rem;
alpar@404
   541
          if (u != _target && !_level->active(u)) {
alpar@404
   542
            _level->activate(u);
alpar@404
   543
          }
alpar@404
   544
        }
alpar@404
   545
      }
alpar@404
   546
      for (InArcIt e(_graph, _source); e != INVALID; ++e) {
kpeter@688
   547
        Value rem = (*_flow)[e];
alpar@404
   548
        if (_tolerance.positive(rem)) {
alpar@404
   549
          Node v = _graph.source(e);
alpar@404
   550
          if ((*_level)[v] == _level->maxLevel()) continue;
alpar@404
   551
          _flow->set(e, 0);
kpeter@628
   552
          (*_excess)[v] += rem;
alpar@404
   553
          if (v != _target && !_level->active(v)) {
alpar@404
   554
            _level->activate(v);
alpar@404
   555
          }
alpar@404
   556
        }
alpar@404
   557
      }
alpar@404
   558
      return true;
alpar@404
   559
    }
alpar@404
   560
alpar@404
   561
    /// \brief Starts the first phase of the preflow algorithm.
alpar@404
   562
    ///
alpar@404
   563
    /// The preflow algorithm consists of two phases, this method runs
alpar@404
   564
    /// the first phase. After the first phase the maximum flow value
alpar@404
   565
    /// and a minimum value cut can already be computed, although a
alpar@404
   566
    /// maximum flow is not yet obtained. So after calling this method
alpar@404
   567
    /// \ref flowValue() returns the value of a maximum flow and \ref
alpar@404
   568
    /// minCut() returns a minimum cut.
kpeter@408
   569
    /// \pre One of the \ref init() functions must be called before
kpeter@408
   570
    /// using this function.
alpar@404
   571
    void startFirstPhase() {
alpar@404
   572
      _phase = true;
alpar@404
   573
alpar@404
   574
      Node n = _level->highestActive();
alpar@404
   575
      int level = _level->highestActiveLevel();
alpar@404
   576
      while (n != INVALID) {
alpar@404
   577
        int num = _node_num;
alpar@404
   578
alpar@404
   579
        while (num > 0 && n != INVALID) {
kpeter@688
   580
          Value excess = (*_excess)[n];
alpar@404
   581
          int new_level = _level->maxLevel();
alpar@404
   582
alpar@404
   583
          for (OutArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   584
            Value rem = (*_capacity)[e] - (*_flow)[e];
alpar@404
   585
            if (!_tolerance.positive(rem)) continue;
alpar@404
   586
            Node v = _graph.target(e);
alpar@404
   587
            if ((*_level)[v] < level) {
alpar@404
   588
              if (!_level->active(v) && v != _target) {
alpar@404
   589
                _level->activate(v);
alpar@404
   590
              }
alpar@404
   591
              if (!_tolerance.less(rem, excess)) {
alpar@404
   592
                _flow->set(e, (*_flow)[e] + excess);
kpeter@628
   593
                (*_excess)[v] += excess;
alpar@404
   594
                excess = 0;
alpar@404
   595
                goto no_more_push_1;
alpar@404
   596
              } else {
alpar@404
   597
                excess -= rem;
kpeter@628
   598
                (*_excess)[v] += rem;
alpar@404
   599
                _flow->set(e, (*_capacity)[e]);
alpar@404
   600
              }
alpar@404
   601
            } else if (new_level > (*_level)[v]) {
alpar@404
   602
              new_level = (*_level)[v];
alpar@404
   603
            }
alpar@404
   604
          }
alpar@404
   605
alpar@404
   606
          for (InArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   607
            Value rem = (*_flow)[e];
alpar@404
   608
            if (!_tolerance.positive(rem)) continue;
alpar@404
   609
            Node v = _graph.source(e);
alpar@404
   610
            if ((*_level)[v] < level) {
alpar@404
   611
              if (!_level->active(v) && v != _target) {
alpar@404
   612
                _level->activate(v);
alpar@404
   613
              }
alpar@404
   614
              if (!_tolerance.less(rem, excess)) {
alpar@404
   615
                _flow->set(e, (*_flow)[e] - excess);
kpeter@628
   616
                (*_excess)[v] += excess;
alpar@404
   617
                excess = 0;
alpar@404
   618
                goto no_more_push_1;
alpar@404
   619
              } else {
alpar@404
   620
                excess -= rem;
kpeter@628
   621
                (*_excess)[v] += rem;
alpar@404
   622
                _flow->set(e, 0);
alpar@404
   623
              }
alpar@404
   624
            } else if (new_level > (*_level)[v]) {
alpar@404
   625
              new_level = (*_level)[v];
alpar@404
   626
            }
alpar@404
   627
          }
alpar@404
   628
alpar@404
   629
        no_more_push_1:
alpar@404
   630
kpeter@628
   631
          (*_excess)[n] = excess;
alpar@404
   632
alpar@404
   633
          if (excess != 0) {
alpar@404
   634
            if (new_level + 1 < _level->maxLevel()) {
alpar@404
   635
              _level->liftHighestActive(new_level + 1);
alpar@404
   636
            } else {
alpar@404
   637
              _level->liftHighestActiveToTop();
alpar@404
   638
            }
alpar@404
   639
            if (_level->emptyLevel(level)) {
alpar@404
   640
              _level->liftToTop(level);
alpar@404
   641
            }
alpar@404
   642
          } else {
alpar@404
   643
            _level->deactivate(n);
alpar@404
   644
          }
alpar@404
   645
alpar@404
   646
          n = _level->highestActive();
alpar@404
   647
          level = _level->highestActiveLevel();
alpar@404
   648
          --num;
alpar@404
   649
        }
alpar@404
   650
alpar@404
   651
        num = _node_num * 20;
alpar@404
   652
        while (num > 0 && n != INVALID) {
kpeter@688
   653
          Value excess = (*_excess)[n];
alpar@404
   654
          int new_level = _level->maxLevel();
alpar@404
   655
alpar@404
   656
          for (OutArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   657
            Value rem = (*_capacity)[e] - (*_flow)[e];
alpar@404
   658
            if (!_tolerance.positive(rem)) continue;
alpar@404
   659
            Node v = _graph.target(e);
alpar@404
   660
            if ((*_level)[v] < level) {
alpar@404
   661
              if (!_level->active(v) && v != _target) {
alpar@404
   662
                _level->activate(v);
alpar@404
   663
              }
alpar@404
   664
              if (!_tolerance.less(rem, excess)) {
alpar@404
   665
                _flow->set(e, (*_flow)[e] + excess);
kpeter@628
   666
                (*_excess)[v] += excess;
alpar@404
   667
                excess = 0;
alpar@404
   668
                goto no_more_push_2;
alpar@404
   669
              } else {
alpar@404
   670
                excess -= rem;
kpeter@628
   671
                (*_excess)[v] += rem;
alpar@404
   672
                _flow->set(e, (*_capacity)[e]);
alpar@404
   673
              }
alpar@404
   674
            } else if (new_level > (*_level)[v]) {
alpar@404
   675
              new_level = (*_level)[v];
alpar@404
   676
            }
alpar@404
   677
          }
alpar@404
   678
alpar@404
   679
          for (InArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   680
            Value rem = (*_flow)[e];
alpar@404
   681
            if (!_tolerance.positive(rem)) continue;
alpar@404
   682
            Node v = _graph.source(e);
alpar@404
   683
            if ((*_level)[v] < level) {
alpar@404
   684
              if (!_level->active(v) && v != _target) {
alpar@404
   685
                _level->activate(v);
alpar@404
   686
              }
alpar@404
   687
              if (!_tolerance.less(rem, excess)) {
alpar@404
   688
                _flow->set(e, (*_flow)[e] - excess);
kpeter@628
   689
                (*_excess)[v] += excess;
alpar@404
   690
                excess = 0;
alpar@404
   691
                goto no_more_push_2;
alpar@404
   692
              } else {
alpar@404
   693
                excess -= rem;
kpeter@628
   694
                (*_excess)[v] += rem;
alpar@404
   695
                _flow->set(e, 0);
alpar@404
   696
              }
alpar@404
   697
            } else if (new_level > (*_level)[v]) {
alpar@404
   698
              new_level = (*_level)[v];
alpar@404
   699
            }
alpar@404
   700
          }
alpar@404
   701
alpar@404
   702
        no_more_push_2:
alpar@404
   703
kpeter@628
   704
          (*_excess)[n] = excess;
alpar@404
   705
alpar@404
   706
          if (excess != 0) {
alpar@404
   707
            if (new_level + 1 < _level->maxLevel()) {
alpar@404
   708
              _level->liftActiveOn(level, new_level + 1);
alpar@404
   709
            } else {
alpar@404
   710
              _level->liftActiveToTop(level);
alpar@404
   711
            }
alpar@404
   712
            if (_level->emptyLevel(level)) {
alpar@404
   713
              _level->liftToTop(level);
alpar@404
   714
            }
alpar@404
   715
          } else {
alpar@404
   716
            _level->deactivate(n);
alpar@404
   717
          }
alpar@404
   718
alpar@404
   719
          while (level >= 0 && _level->activeFree(level)) {
alpar@404
   720
            --level;
alpar@404
   721
          }
alpar@404
   722
          if (level == -1) {
alpar@404
   723
            n = _level->highestActive();
alpar@404
   724
            level = _level->highestActiveLevel();
alpar@404
   725
          } else {
alpar@404
   726
            n = _level->activeOn(level);
alpar@404
   727
          }
alpar@404
   728
          --num;
alpar@404
   729
        }
alpar@404
   730
      }
alpar@404
   731
    }
alpar@404
   732
alpar@404
   733
    /// \brief Starts the second phase of the preflow algorithm.
alpar@404
   734
    ///
alpar@404
   735
    /// The preflow algorithm consists of two phases, this method runs
kpeter@408
   736
    /// the second phase. After calling one of the \ref init() functions
kpeter@408
   737
    /// and \ref startFirstPhase() and then \ref startSecondPhase(),
kpeter@408
   738
    /// \ref flowMap() returns a maximum flow, \ref flowValue() returns the
alpar@404
   739
    /// value of a maximum flow, \ref minCut() returns a minimum cut
kpeter@408
   740
    /// \pre One of the \ref init() functions and \ref startFirstPhase()
kpeter@408
   741
    /// must be called before using this function.
alpar@404
   742
    void startSecondPhase() {
alpar@404
   743
      _phase = false;
alpar@404
   744
alpar@404
   745
      typename Digraph::template NodeMap<bool> reached(_graph);
alpar@404
   746
      for (NodeIt n(_graph); n != INVALID; ++n) {
kpeter@628
   747
        reached[n] = (*_level)[n] < _level->maxLevel();
alpar@404
   748
      }
alpar@404
   749
alpar@404
   750
      _level->initStart();
alpar@404
   751
      _level->initAddItem(_source);
alpar@404
   752
alpar@404
   753
      std::vector<Node> queue;
alpar@404
   754
      queue.push_back(_source);
kpeter@628
   755
      reached[_source] = true;
alpar@404
   756
alpar@404
   757
      while (!queue.empty()) {
alpar@404
   758
        _level->initNewLevel();
alpar@404
   759
        std::vector<Node> nqueue;
alpar@404
   760
        for (int i = 0; i < int(queue.size()); ++i) {
alpar@404
   761
          Node n = queue[i];
alpar@404
   762
          for (OutArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   763
            Node v = _graph.target(e);
alpar@404
   764
            if (!reached[v] && _tolerance.positive((*_flow)[e])) {
kpeter@628
   765
              reached[v] = true;
alpar@404
   766
              _level->initAddItem(v);
alpar@404
   767
              nqueue.push_back(v);
alpar@404
   768
            }
alpar@404
   769
          }
alpar@404
   770
          for (InArcIt e(_graph, n); e != INVALID; ++e) {
alpar@404
   771
            Node u = _graph.source(e);
alpar@404
   772
            if (!reached[u] &&
alpar@404
   773
                _tolerance.positive((*_capacity)[e] - (*_flow)[e])) {
kpeter@628
   774
              reached[u] = true;
alpar@404
   775
              _level->initAddItem(u);
alpar@404
   776
              nqueue.push_back(u);
alpar@404
   777
            }
alpar@404
   778
          }
alpar@404
   779
        }
alpar@404
   780
        queue.swap(nqueue);
alpar@404
   781
      }
alpar@404
   782
      _level->initFinish();
alpar@404
   783
alpar@404
   784
      for (NodeIt n(_graph); n != INVALID; ++n) {
alpar@404
   785
        if (!reached[n]) {
alpar@404
   786
          _level->dirtyTopButOne(n);
alpar@404
   787
        } else if ((*_excess)[n] > 0 && _target != n) {
alpar@404
   788
          _level->activate(n);
alpar@404
   789
        }
alpar@404
   790
      }
alpar@404
   791
alpar@404
   792
      Node n;
alpar@404
   793
      while ((n = _level->highestActive()) != INVALID) {
kpeter@688
   794
        Value excess = (*_excess)[n];
alpar@404
   795
        int level = _level->highestActiveLevel();
alpar@404
   796
        int new_level = _level->maxLevel();
alpar@404
   797
alpar@404
   798
        for (OutArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   799
          Value rem = (*_capacity)[e] - (*_flow)[e];
alpar@404
   800
          if (!_tolerance.positive(rem)) continue;
alpar@404
   801
          Node v = _graph.target(e);
alpar@404
   802
          if ((*_level)[v] < level) {
alpar@404
   803
            if (!_level->active(v) && v != _source) {
alpar@404
   804
              _level->activate(v);
alpar@404
   805
            }
alpar@404
   806
            if (!_tolerance.less(rem, excess)) {
alpar@404
   807
              _flow->set(e, (*_flow)[e] + excess);
kpeter@628
   808
              (*_excess)[v] += excess;
alpar@404
   809
              excess = 0;
alpar@404
   810
              goto no_more_push;
alpar@404
   811
            } else {
alpar@404
   812
              excess -= rem;
kpeter@628
   813
              (*_excess)[v] += rem;
alpar@404
   814
              _flow->set(e, (*_capacity)[e]);
alpar@404
   815
            }
alpar@404
   816
          } else if (new_level > (*_level)[v]) {
alpar@404
   817
            new_level = (*_level)[v];
alpar@404
   818
          }
alpar@404
   819
        }
alpar@404
   820
alpar@404
   821
        for (InArcIt e(_graph, n); e != INVALID; ++e) {
kpeter@688
   822
          Value rem = (*_flow)[e];
alpar@404
   823
          if (!_tolerance.positive(rem)) continue;
alpar@404
   824
          Node v = _graph.source(e);
alpar@404
   825
          if ((*_level)[v] < level) {
alpar@404
   826
            if (!_level->active(v) && v != _source) {
alpar@404
   827
              _level->activate(v);
alpar@404
   828
            }
alpar@404
   829
            if (!_tolerance.less(rem, excess)) {
alpar@404
   830
              _flow->set(e, (*_flow)[e] - excess);
kpeter@628
   831
              (*_excess)[v] += excess;
alpar@404
   832
              excess = 0;
alpar@404
   833
              goto no_more_push;
alpar@404
   834
            } else {
alpar@404
   835
              excess -= rem;
kpeter@628
   836
              (*_excess)[v] += rem;
alpar@404
   837
              _flow->set(e, 0);
alpar@404
   838
            }
alpar@404
   839
          } else if (new_level > (*_level)[v]) {
alpar@404
   840
            new_level = (*_level)[v];
alpar@404
   841
          }
alpar@404
   842
        }
alpar@404
   843
alpar@404
   844
      no_more_push:
alpar@404
   845
kpeter@628
   846
        (*_excess)[n] = excess;
alpar@404
   847
alpar@404
   848
        if (excess != 0) {
alpar@404
   849
          if (new_level + 1 < _level->maxLevel()) {
alpar@404
   850
            _level->liftHighestActive(new_level + 1);
alpar@404
   851
          } else {
alpar@404
   852
            // Calculation error
alpar@404
   853
            _level->liftHighestActiveToTop();
alpar@404
   854
          }
alpar@404
   855
          if (_level->emptyLevel(level)) {
alpar@404
   856
            // Calculation error
alpar@404
   857
            _level->liftToTop(level);
alpar@404
   858
          }
alpar@404
   859
        } else {
alpar@404
   860
          _level->deactivate(n);
alpar@404
   861
        }
alpar@404
   862
alpar@404
   863
      }
alpar@404
   864
    }
alpar@404
   865
alpar@404
   866
    /// \brief Runs the preflow algorithm.
alpar@404
   867
    ///
alpar@404
   868
    /// Runs the preflow algorithm.
alpar@404
   869
    /// \note pf.run() is just a shortcut of the following code.
alpar@404
   870
    /// \code
alpar@404
   871
    ///   pf.init();
alpar@404
   872
    ///   pf.startFirstPhase();
alpar@404
   873
    ///   pf.startSecondPhase();
alpar@404
   874
    /// \endcode
alpar@404
   875
    void run() {
alpar@404
   876
      init();
alpar@404
   877
      startFirstPhase();
alpar@404
   878
      startSecondPhase();
alpar@404
   879
    }
alpar@404
   880
alpar@404
   881
    /// \brief Runs the preflow algorithm to compute the minimum cut.
alpar@404
   882
    ///
alpar@404
   883
    /// Runs the preflow algorithm to compute the minimum cut.
alpar@404
   884
    /// \note pf.runMinCut() is just a shortcut of the following code.
alpar@404
   885
    /// \code
alpar@404
   886
    ///   pf.init();
alpar@404
   887
    ///   pf.startFirstPhase();
alpar@404
   888
    /// \endcode
alpar@404
   889
    void runMinCut() {
alpar@404
   890
      init();
alpar@404
   891
      startFirstPhase();
alpar@404
   892
    }
alpar@404
   893
alpar@404
   894
    /// @}
alpar@404
   895
alpar@404
   896
    /// \name Query Functions
kpeter@408
   897
    /// The results of the preflow algorithm can be obtained using these
alpar@404
   898
    /// functions.\n
kpeter@408
   899
    /// Either one of the \ref run() "run*()" functions or one of the
kpeter@408
   900
    /// \ref startFirstPhase() "start*()" functions should be called
kpeter@408
   901
    /// before using them.
alpar@404
   902
alpar@404
   903
    ///@{
alpar@404
   904
alpar@404
   905
    /// \brief Returns the value of the maximum flow.
alpar@404
   906
    ///
alpar@404
   907
    /// Returns the value of the maximum flow by returning the excess
kpeter@408
   908
    /// of the target node. This value equals to the value of
kpeter@408
   909
    /// the maximum flow already after the first phase of the algorithm.
kpeter@408
   910
    ///
kpeter@408
   911
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   912
    /// using this function.
kpeter@688
   913
    Value flowValue() const {
alpar@404
   914
      return (*_excess)[_target];
alpar@404
   915
    }
alpar@404
   916
kpeter@688
   917
    /// \brief Returns the flow value on the given arc.
alpar@404
   918
    ///
kpeter@688
   919
    /// Returns the flow value on the given arc. This method can
kpeter@408
   920
    /// be called after the second phase of the algorithm.
kpeter@408
   921
    ///
kpeter@408
   922
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   923
    /// using this function.
kpeter@688
   924
    Value flow(const Arc& arc) const {
kpeter@408
   925
      return (*_flow)[arc];
kpeter@408
   926
    }
kpeter@408
   927
kpeter@408
   928
    /// \brief Returns a const reference to the flow map.
kpeter@408
   929
    ///
kpeter@408
   930
    /// Returns a const reference to the arc map storing the found flow.
kpeter@408
   931
    /// This method can be called after the second phase of the algorithm.
kpeter@408
   932
    ///
kpeter@408
   933
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   934
    /// using this function.
kpeter@437
   935
    const FlowMap& flowMap() const {
kpeter@408
   936
      return *_flow;
kpeter@408
   937
    }
kpeter@408
   938
kpeter@408
   939
    /// \brief Returns \c true when the node is on the source side of the
kpeter@408
   940
    /// minimum cut.
kpeter@408
   941
    ///
kpeter@408
   942
    /// Returns true when the node is on the source side of the found
kpeter@408
   943
    /// minimum cut. This method can be called both after running \ref
alpar@404
   944
    /// startFirstPhase() and \ref startSecondPhase().
kpeter@408
   945
    ///
kpeter@408
   946
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   947
    /// using this function.
alpar@404
   948
    bool minCut(const Node& node) const {
alpar@404
   949
      return ((*_level)[node] == _level->maxLevel()) == _phase;
alpar@404
   950
    }
alpar@404
   951
kpeter@408
   952
    /// \brief Gives back a minimum value cut.
alpar@404
   953
    ///
kpeter@408
   954
    /// Sets \c cutMap to the characteristic vector of a minimum value
kpeter@408
   955
    /// cut. \c cutMap should be a \ref concepts::WriteMap "writable"
kpeter@408
   956
    /// node map with \c bool (or convertible) value type.
kpeter@408
   957
    ///
kpeter@408
   958
    /// This method can be called both after running \ref startFirstPhase()
kpeter@408
   959
    /// and \ref startSecondPhase(). The result after the second phase
kpeter@408
   960
    /// could be slightly different if inexact computation is used.
kpeter@408
   961
    ///
kpeter@408
   962
    /// \note This function calls \ref minCut() for each node, so it runs in
kpeter@606
   963
    /// O(n) time.
kpeter@408
   964
    ///
kpeter@408
   965
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@408
   966
    /// using this function.
alpar@404
   967
    template <typename CutMap>
alpar@404
   968
    void minCutMap(CutMap& cutMap) const {
alpar@404
   969
      for (NodeIt n(_graph); n != INVALID; ++n) {
alpar@404
   970
        cutMap.set(n, minCut(n));
alpar@404
   971
      }
alpar@404
   972
    }
alpar@404
   973
alpar@404
   974
    /// @}
alpar@404
   975
  };
alpar@404
   976
}
alpar@404
   977
alpar@404
   978
#endif