lemon/karp.h
author Alpar Juttner <alpar@cs.elte.hu>
Mon, 01 Mar 2010 07:51:45 +0100
changeset 850 e77b621e6e7e
parent 825 75e6020b19b1
child 863 a93f1a27d831
permissions -rw-r--r--
Configurable glpk prefix in ./scripts/bootstrap.sh and ...
unneeded solver backends are explicitely switched off with --without-*
kpeter@765
     1
/* -*- C++ -*-
kpeter@765
     2
 *
kpeter@765
     3
 * This file is a part of LEMON, a generic C++ optimization library
kpeter@765
     4
 *
kpeter@765
     5
 * Copyright (C) 2003-2008
kpeter@765
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@765
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@765
     8
 *
kpeter@765
     9
 * Permission to use, modify and distribute this software is granted
kpeter@765
    10
 * provided that this copyright notice appears in all copies. For
kpeter@765
    11
 * precise terms see the accompanying LICENSE file.
kpeter@765
    12
 *
kpeter@765
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@765
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@765
    15
 * purpose.
kpeter@765
    16
 *
kpeter@765
    17
 */
kpeter@765
    18
kpeter@765
    19
#ifndef LEMON_KARP_H
kpeter@765
    20
#define LEMON_KARP_H
kpeter@765
    21
kpeter@768
    22
/// \ingroup min_mean_cycle
kpeter@765
    23
///
kpeter@765
    24
/// \file
kpeter@765
    25
/// \brief Karp's algorithm for finding a minimum mean cycle.
kpeter@765
    26
kpeter@765
    27
#include <vector>
kpeter@765
    28
#include <limits>
kpeter@765
    29
#include <lemon/core.h>
kpeter@765
    30
#include <lemon/path.h>
kpeter@765
    31
#include <lemon/tolerance.h>
kpeter@765
    32
#include <lemon/connectivity.h>
kpeter@765
    33
kpeter@765
    34
namespace lemon {
kpeter@765
    35
kpeter@765
    36
  /// \brief Default traits class of Karp algorithm.
kpeter@765
    37
  ///
kpeter@765
    38
  /// Default traits class of Karp algorithm.
kpeter@765
    39
  /// \tparam GR The type of the digraph.
kpeter@765
    40
  /// \tparam LEN The type of the length map.
kpeter@765
    41
  /// It must conform to the \ref concepts::ReadMap "ReadMap" concept.
kpeter@765
    42
#ifdef DOXYGEN
kpeter@765
    43
  template <typename GR, typename LEN>
kpeter@765
    44
#else
kpeter@765
    45
  template <typename GR, typename LEN,
kpeter@765
    46
    bool integer = std::numeric_limits<typename LEN::Value>::is_integer>
kpeter@765
    47
#endif
kpeter@765
    48
  struct KarpDefaultTraits
kpeter@765
    49
  {
kpeter@765
    50
    /// The type of the digraph
kpeter@765
    51
    typedef GR Digraph;
kpeter@765
    52
    /// The type of the length map
kpeter@765
    53
    typedef LEN LengthMap;
kpeter@765
    54
    /// The type of the arc lengths
kpeter@765
    55
    typedef typename LengthMap::Value Value;
kpeter@765
    56
kpeter@765
    57
    /// \brief The large value type used for internal computations
kpeter@765
    58
    ///
kpeter@765
    59
    /// The large value type used for internal computations.
kpeter@765
    60
    /// It is \c long \c long if the \c Value type is integer,
kpeter@765
    61
    /// otherwise it is \c double.
kpeter@765
    62
    /// \c Value must be convertible to \c LargeValue.
kpeter@765
    63
    typedef double LargeValue;
kpeter@765
    64
kpeter@765
    65
    /// The tolerance type used for internal computations
kpeter@765
    66
    typedef lemon::Tolerance<LargeValue> Tolerance;
kpeter@765
    67
kpeter@765
    68
    /// \brief The path type of the found cycles
kpeter@765
    69
    ///
kpeter@765
    70
    /// The path type of the found cycles.
kpeter@765
    71
    /// It must conform to the \ref lemon::concepts::Path "Path" concept
kpeter@772
    72
    /// and it must have an \c addFront() function.
kpeter@765
    73
    typedef lemon::Path<Digraph> Path;
kpeter@765
    74
  };
kpeter@765
    75
kpeter@765
    76
  // Default traits class for integer value types
kpeter@765
    77
  template <typename GR, typename LEN>
kpeter@765
    78
  struct KarpDefaultTraits<GR, LEN, true>
kpeter@765
    79
  {
kpeter@765
    80
    typedef GR Digraph;
kpeter@765
    81
    typedef LEN LengthMap;
kpeter@765
    82
    typedef typename LengthMap::Value Value;
kpeter@765
    83
#ifdef LEMON_HAVE_LONG_LONG
kpeter@765
    84
    typedef long long LargeValue;
kpeter@765
    85
#else
kpeter@765
    86
    typedef long LargeValue;
kpeter@765
    87
#endif
kpeter@765
    88
    typedef lemon::Tolerance<LargeValue> Tolerance;
kpeter@765
    89
    typedef lemon::Path<Digraph> Path;
kpeter@765
    90
  };
kpeter@765
    91
kpeter@765
    92
kpeter@768
    93
  /// \addtogroup min_mean_cycle
kpeter@765
    94
  /// @{
kpeter@765
    95
kpeter@765
    96
  /// \brief Implementation of Karp's algorithm for finding a minimum
kpeter@765
    97
  /// mean cycle.
kpeter@765
    98
  ///
kpeter@765
    99
  /// This class implements Karp's algorithm for finding a directed
kpeter@771
   100
  /// cycle of minimum mean length (cost) in a digraph
kpeter@771
   101
  /// \ref amo93networkflows, \ref dasdan98minmeancycle.
kpeter@768
   102
  /// It runs in time O(ne) and uses space O(n<sup>2</sup>+e).
kpeter@765
   103
  ///
kpeter@765
   104
  /// \tparam GR The type of the digraph the algorithm runs on.
kpeter@765
   105
  /// \tparam LEN The type of the length map. The default
kpeter@765
   106
  /// map type is \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
kpeter@825
   107
  /// \tparam TR The traits class that defines various types used by the
kpeter@825
   108
  /// algorithm. By default, it is \ref KarpDefaultTraits
kpeter@825
   109
  /// "KarpDefaultTraits<GR, LEN>".
kpeter@825
   110
  /// In most cases, this parameter should not be set directly,
kpeter@825
   111
  /// consider to use the named template parameters instead.
kpeter@765
   112
#ifdef DOXYGEN
kpeter@765
   113
  template <typename GR, typename LEN, typename TR>
kpeter@765
   114
#else
kpeter@765
   115
  template < typename GR,
kpeter@765
   116
             typename LEN = typename GR::template ArcMap<int>,
kpeter@765
   117
             typename TR = KarpDefaultTraits<GR, LEN> >
kpeter@765
   118
#endif
kpeter@765
   119
  class Karp
kpeter@765
   120
  {
kpeter@765
   121
  public:
kpeter@765
   122
kpeter@765
   123
    /// The type of the digraph
kpeter@765
   124
    typedef typename TR::Digraph Digraph;
kpeter@765
   125
    /// The type of the length map
kpeter@765
   126
    typedef typename TR::LengthMap LengthMap;
kpeter@765
   127
    /// The type of the arc lengths
kpeter@765
   128
    typedef typename TR::Value Value;
kpeter@765
   129
kpeter@765
   130
    /// \brief The large value type
kpeter@765
   131
    ///
kpeter@765
   132
    /// The large value type used for internal computations.
kpeter@825
   133
    /// By default, it is \c long \c long if the \c Value type is integer,
kpeter@765
   134
    /// otherwise it is \c double.
kpeter@765
   135
    typedef typename TR::LargeValue LargeValue;
kpeter@765
   136
kpeter@765
   137
    /// The tolerance type
kpeter@765
   138
    typedef typename TR::Tolerance Tolerance;
kpeter@765
   139
kpeter@765
   140
    /// \brief The path type of the found cycles
kpeter@765
   141
    ///
kpeter@765
   142
    /// The path type of the found cycles.
kpeter@765
   143
    /// Using the \ref KarpDefaultTraits "default traits class",
kpeter@765
   144
    /// it is \ref lemon::Path "Path<Digraph>".
kpeter@765
   145
    typedef typename TR::Path Path;
kpeter@765
   146
kpeter@765
   147
    /// The \ref KarpDefaultTraits "traits class" of the algorithm
kpeter@765
   148
    typedef TR Traits;
kpeter@765
   149
kpeter@765
   150
  private:
kpeter@765
   151
kpeter@765
   152
    TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
kpeter@765
   153
kpeter@765
   154
    // Data sturcture for path data
kpeter@765
   155
    struct PathData
kpeter@765
   156
    {
kpeter@765
   157
      LargeValue dist;
kpeter@765
   158
      Arc pred;
kpeter@767
   159
      PathData(LargeValue d, Arc p = INVALID) :
kpeter@767
   160
        dist(d), pred(p) {}
kpeter@765
   161
    };
kpeter@765
   162
kpeter@765
   163
    typedef typename Digraph::template NodeMap<std::vector<PathData> >
kpeter@765
   164
      PathDataNodeMap;
kpeter@765
   165
kpeter@765
   166
  private:
kpeter@765
   167
kpeter@765
   168
    // The digraph the algorithm runs on
kpeter@765
   169
    const Digraph &_gr;
kpeter@765
   170
    // The length of the arcs
kpeter@765
   171
    const LengthMap &_length;
kpeter@765
   172
kpeter@765
   173
    // Data for storing the strongly connected components
kpeter@765
   174
    int _comp_num;
kpeter@765
   175
    typename Digraph::template NodeMap<int> _comp;
kpeter@765
   176
    std::vector<std::vector<Node> > _comp_nodes;
kpeter@765
   177
    std::vector<Node>* _nodes;
kpeter@765
   178
    typename Digraph::template NodeMap<std::vector<Arc> > _out_arcs;
kpeter@765
   179
kpeter@765
   180
    // Data for the found cycle
kpeter@765
   181
    LargeValue _cycle_length;
kpeter@765
   182
    int _cycle_size;
kpeter@765
   183
    Node _cycle_node;
kpeter@765
   184
kpeter@765
   185
    Path *_cycle_path;
kpeter@765
   186
    bool _local_path;
kpeter@765
   187
kpeter@765
   188
    // Node map for storing path data
kpeter@765
   189
    PathDataNodeMap _data;
kpeter@765
   190
    // The processed nodes in the last round
kpeter@765
   191
    std::vector<Node> _process;
kpeter@765
   192
kpeter@765
   193
    Tolerance _tolerance;
kpeter@767
   194
    
kpeter@767
   195
    // Infinite constant
kpeter@767
   196
    const LargeValue INF;
kpeter@765
   197
kpeter@765
   198
  public:
kpeter@765
   199
kpeter@765
   200
    /// \name Named Template Parameters
kpeter@765
   201
    /// @{
kpeter@765
   202
kpeter@765
   203
    template <typename T>
kpeter@765
   204
    struct SetLargeValueTraits : public Traits {
kpeter@765
   205
      typedef T LargeValue;
kpeter@765
   206
      typedef lemon::Tolerance<T> Tolerance;
kpeter@765
   207
    };
kpeter@765
   208
kpeter@765
   209
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@765
   210
    /// \c LargeValue type.
kpeter@765
   211
    ///
kpeter@765
   212
    /// \ref named-templ-param "Named parameter" for setting \c LargeValue
kpeter@765
   213
    /// type. It is used for internal computations in the algorithm.
kpeter@765
   214
    template <typename T>
kpeter@765
   215
    struct SetLargeValue
kpeter@765
   216
      : public Karp<GR, LEN, SetLargeValueTraits<T> > {
kpeter@765
   217
      typedef Karp<GR, LEN, SetLargeValueTraits<T> > Create;
kpeter@765
   218
    };
kpeter@765
   219
kpeter@765
   220
    template <typename T>
kpeter@765
   221
    struct SetPathTraits : public Traits {
kpeter@765
   222
      typedef T Path;
kpeter@765
   223
    };
kpeter@765
   224
kpeter@765
   225
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@765
   226
    /// \c %Path type.
kpeter@765
   227
    ///
kpeter@765
   228
    /// \ref named-templ-param "Named parameter" for setting the \c %Path
kpeter@765
   229
    /// type of the found cycles.
kpeter@765
   230
    /// It must conform to the \ref lemon::concepts::Path "Path" concept
kpeter@765
   231
    /// and it must have an \c addFront() function.
kpeter@765
   232
    template <typename T>
kpeter@765
   233
    struct SetPath
kpeter@765
   234
      : public Karp<GR, LEN, SetPathTraits<T> > {
kpeter@765
   235
      typedef Karp<GR, LEN, SetPathTraits<T> > Create;
kpeter@765
   236
    };
kpeter@765
   237
kpeter@765
   238
    /// @}
kpeter@765
   239
kpeter@765
   240
  public:
kpeter@765
   241
kpeter@765
   242
    /// \brief Constructor.
kpeter@765
   243
    ///
kpeter@765
   244
    /// The constructor of the class.
kpeter@765
   245
    ///
kpeter@765
   246
    /// \param digraph The digraph the algorithm runs on.
kpeter@765
   247
    /// \param length The lengths (costs) of the arcs.
kpeter@765
   248
    Karp( const Digraph &digraph,
kpeter@765
   249
          const LengthMap &length ) :
kpeter@765
   250
      _gr(digraph), _length(length), _comp(digraph), _out_arcs(digraph),
kpeter@765
   251
      _cycle_length(0), _cycle_size(1), _cycle_node(INVALID),
kpeter@767
   252
      _cycle_path(NULL), _local_path(false), _data(digraph),
kpeter@767
   253
      INF(std::numeric_limits<LargeValue>::has_infinity ?
kpeter@767
   254
          std::numeric_limits<LargeValue>::infinity() :
kpeter@767
   255
          std::numeric_limits<LargeValue>::max())
kpeter@765
   256
    {}
kpeter@765
   257
kpeter@765
   258
    /// Destructor.
kpeter@765
   259
    ~Karp() {
kpeter@765
   260
      if (_local_path) delete _cycle_path;
kpeter@765
   261
    }
kpeter@765
   262
kpeter@765
   263
    /// \brief Set the path structure for storing the found cycle.
kpeter@765
   264
    ///
kpeter@765
   265
    /// This function sets an external path structure for storing the
kpeter@765
   266
    /// found cycle.
kpeter@765
   267
    ///
kpeter@765
   268
    /// If you don't call this function before calling \ref run() or
kpeter@765
   269
    /// \ref findMinMean(), it will allocate a local \ref Path "path"
kpeter@765
   270
    /// structure. The destuctor deallocates this automatically
kpeter@765
   271
    /// allocated object, of course.
kpeter@765
   272
    ///
kpeter@765
   273
    /// \note The algorithm calls only the \ref lemon::Path::addFront()
kpeter@765
   274
    /// "addFront()" function of the given path structure.
kpeter@765
   275
    ///
kpeter@765
   276
    /// \return <tt>(*this)</tt>
kpeter@765
   277
    Karp& cycle(Path &path) {
kpeter@765
   278
      if (_local_path) {
kpeter@765
   279
        delete _cycle_path;
kpeter@765
   280
        _local_path = false;
kpeter@765
   281
      }
kpeter@765
   282
      _cycle_path = &path;
kpeter@765
   283
      return *this;
kpeter@765
   284
    }
kpeter@765
   285
kpeter@769
   286
    /// \brief Set the tolerance used by the algorithm.
kpeter@769
   287
    ///
kpeter@769
   288
    /// This function sets the tolerance object used by the algorithm.
kpeter@769
   289
    ///
kpeter@769
   290
    /// \return <tt>(*this)</tt>
kpeter@769
   291
    Karp& tolerance(const Tolerance& tolerance) {
kpeter@769
   292
      _tolerance = tolerance;
kpeter@769
   293
      return *this;
kpeter@769
   294
    }
kpeter@769
   295
kpeter@769
   296
    /// \brief Return a const reference to the tolerance.
kpeter@769
   297
    ///
kpeter@769
   298
    /// This function returns a const reference to the tolerance object
kpeter@769
   299
    /// used by the algorithm.
kpeter@769
   300
    const Tolerance& tolerance() const {
kpeter@769
   301
      return _tolerance;
kpeter@769
   302
    }
kpeter@769
   303
kpeter@765
   304
    /// \name Execution control
kpeter@765
   305
    /// The simplest way to execute the algorithm is to call the \ref run()
kpeter@765
   306
    /// function.\n
kpeter@765
   307
    /// If you only need the minimum mean length, you may call
kpeter@765
   308
    /// \ref findMinMean().
kpeter@765
   309
kpeter@765
   310
    /// @{
kpeter@765
   311
kpeter@765
   312
    /// \brief Run the algorithm.
kpeter@765
   313
    ///
kpeter@765
   314
    /// This function runs the algorithm.
kpeter@765
   315
    /// It can be called more than once (e.g. if the underlying digraph
kpeter@765
   316
    /// and/or the arc lengths have been modified).
kpeter@765
   317
    ///
kpeter@765
   318
    /// \return \c true if a directed cycle exists in the digraph.
kpeter@765
   319
    ///
kpeter@765
   320
    /// \note <tt>mmc.run()</tt> is just a shortcut of the following code.
kpeter@765
   321
    /// \code
kpeter@765
   322
    ///   return mmc.findMinMean() && mmc.findCycle();
kpeter@765
   323
    /// \endcode
kpeter@765
   324
    bool run() {
kpeter@765
   325
      return findMinMean() && findCycle();
kpeter@765
   326
    }
kpeter@765
   327
kpeter@765
   328
    /// \brief Find the minimum cycle mean.
kpeter@765
   329
    ///
kpeter@765
   330
    /// This function finds the minimum mean length of the directed
kpeter@765
   331
    /// cycles in the digraph.
kpeter@765
   332
    ///
kpeter@765
   333
    /// \return \c true if a directed cycle exists in the digraph.
kpeter@765
   334
    bool findMinMean() {
kpeter@765
   335
      // Initialization and find strongly connected components
kpeter@765
   336
      init();
kpeter@765
   337
      findComponents();
kpeter@765
   338
      
kpeter@765
   339
      // Find the minimum cycle mean in the components
kpeter@765
   340
      for (int comp = 0; comp < _comp_num; ++comp) {
kpeter@765
   341
        if (!initComponent(comp)) continue;
kpeter@765
   342
        processRounds();
kpeter@765
   343
        updateMinMean();
kpeter@765
   344
      }
kpeter@765
   345
      return (_cycle_node != INVALID);
kpeter@765
   346
    }
kpeter@765
   347
kpeter@765
   348
    /// \brief Find a minimum mean directed cycle.
kpeter@765
   349
    ///
kpeter@765
   350
    /// This function finds a directed cycle of minimum mean length
kpeter@765
   351
    /// in the digraph using the data computed by findMinMean().
kpeter@765
   352
    ///
kpeter@765
   353
    /// \return \c true if a directed cycle exists in the digraph.
kpeter@765
   354
    ///
kpeter@765
   355
    /// \pre \ref findMinMean() must be called before using this function.
kpeter@765
   356
    bool findCycle() {
kpeter@765
   357
      if (_cycle_node == INVALID) return false;
kpeter@765
   358
      IntNodeMap reached(_gr, -1);
kpeter@765
   359
      int r = _data[_cycle_node].size();
kpeter@765
   360
      Node u = _cycle_node;
kpeter@765
   361
      while (reached[u] < 0) {
kpeter@765
   362
        reached[u] = --r;
kpeter@765
   363
        u = _gr.source(_data[u][r].pred);
kpeter@765
   364
      }
kpeter@765
   365
      r = reached[u];
kpeter@765
   366
      Arc e = _data[u][r].pred;
kpeter@765
   367
      _cycle_path->addFront(e);
kpeter@765
   368
      _cycle_length = _length[e];
kpeter@765
   369
      _cycle_size = 1;
kpeter@765
   370
      Node v;
kpeter@765
   371
      while ((v = _gr.source(e)) != u) {
kpeter@765
   372
        e = _data[v][--r].pred;
kpeter@765
   373
        _cycle_path->addFront(e);
kpeter@765
   374
        _cycle_length += _length[e];
kpeter@765
   375
        ++_cycle_size;
kpeter@765
   376
      }
kpeter@765
   377
      return true;
kpeter@765
   378
    }
kpeter@765
   379
kpeter@765
   380
    /// @}
kpeter@765
   381
kpeter@765
   382
    /// \name Query Functions
kpeter@765
   383
    /// The results of the algorithm can be obtained using these
kpeter@765
   384
    /// functions.\n
kpeter@765
   385
    /// The algorithm should be executed before using them.
kpeter@765
   386
kpeter@765
   387
    /// @{
kpeter@765
   388
kpeter@765
   389
    /// \brief Return the total length of the found cycle.
kpeter@765
   390
    ///
kpeter@765
   391
    /// This function returns the total length of the found cycle.
kpeter@765
   392
    ///
kpeter@765
   393
    /// \pre \ref run() or \ref findMinMean() must be called before
kpeter@765
   394
    /// using this function.
kpeter@841
   395
    Value cycleLength() const {
kpeter@841
   396
      return static_cast<Value>(_cycle_length);
kpeter@765
   397
    }
kpeter@765
   398
kpeter@765
   399
    /// \brief Return the number of arcs on the found cycle.
kpeter@765
   400
    ///
kpeter@765
   401
    /// This function returns the number of arcs on the found cycle.
kpeter@765
   402
    ///
kpeter@765
   403
    /// \pre \ref run() or \ref findMinMean() must be called before
kpeter@765
   404
    /// using this function.
kpeter@765
   405
    int cycleArcNum() const {
kpeter@765
   406
      return _cycle_size;
kpeter@765
   407
    }
kpeter@765
   408
kpeter@765
   409
    /// \brief Return the mean length of the found cycle.
kpeter@765
   410
    ///
kpeter@765
   411
    /// This function returns the mean length of the found cycle.
kpeter@765
   412
    ///
kpeter@765
   413
    /// \note <tt>alg.cycleMean()</tt> is just a shortcut of the
kpeter@765
   414
    /// following code.
kpeter@765
   415
    /// \code
kpeter@765
   416
    ///   return static_cast<double>(alg.cycleLength()) / alg.cycleArcNum();
kpeter@765
   417
    /// \endcode
kpeter@765
   418
    ///
kpeter@765
   419
    /// \pre \ref run() or \ref findMinMean() must be called before
kpeter@765
   420
    /// using this function.
kpeter@765
   421
    double cycleMean() const {
kpeter@765
   422
      return static_cast<double>(_cycle_length) / _cycle_size;
kpeter@765
   423
    }
kpeter@765
   424
kpeter@765
   425
    /// \brief Return the found cycle.
kpeter@765
   426
    ///
kpeter@765
   427
    /// This function returns a const reference to the path structure
kpeter@765
   428
    /// storing the found cycle.
kpeter@765
   429
    ///
kpeter@765
   430
    /// \pre \ref run() or \ref findCycle() must be called before using
kpeter@765
   431
    /// this function.
kpeter@765
   432
    const Path& cycle() const {
kpeter@765
   433
      return *_cycle_path;
kpeter@765
   434
    }
kpeter@765
   435
kpeter@765
   436
    ///@}
kpeter@765
   437
kpeter@765
   438
  private:
kpeter@765
   439
kpeter@765
   440
    // Initialization
kpeter@765
   441
    void init() {
kpeter@765
   442
      if (!_cycle_path) {
kpeter@765
   443
        _local_path = true;
kpeter@765
   444
        _cycle_path = new Path;
kpeter@765
   445
      }
kpeter@765
   446
      _cycle_path->clear();
kpeter@765
   447
      _cycle_length = 0;
kpeter@765
   448
      _cycle_size = 1;
kpeter@765
   449
      _cycle_node = INVALID;
kpeter@765
   450
      for (NodeIt u(_gr); u != INVALID; ++u)
kpeter@765
   451
        _data[u].clear();
kpeter@765
   452
    }
kpeter@765
   453
kpeter@765
   454
    // Find strongly connected components and initialize _comp_nodes
kpeter@765
   455
    // and _out_arcs
kpeter@765
   456
    void findComponents() {
kpeter@765
   457
      _comp_num = stronglyConnectedComponents(_gr, _comp);
kpeter@765
   458
      _comp_nodes.resize(_comp_num);
kpeter@765
   459
      if (_comp_num == 1) {
kpeter@765
   460
        _comp_nodes[0].clear();
kpeter@765
   461
        for (NodeIt n(_gr); n != INVALID; ++n) {
kpeter@765
   462
          _comp_nodes[0].push_back(n);
kpeter@765
   463
          _out_arcs[n].clear();
kpeter@765
   464
          for (OutArcIt a(_gr, n); a != INVALID; ++a) {
kpeter@765
   465
            _out_arcs[n].push_back(a);
kpeter@765
   466
          }
kpeter@765
   467
        }
kpeter@765
   468
      } else {
kpeter@765
   469
        for (int i = 0; i < _comp_num; ++i)
kpeter@765
   470
          _comp_nodes[i].clear();
kpeter@765
   471
        for (NodeIt n(_gr); n != INVALID; ++n) {
kpeter@765
   472
          int k = _comp[n];
kpeter@765
   473
          _comp_nodes[k].push_back(n);
kpeter@765
   474
          _out_arcs[n].clear();
kpeter@765
   475
          for (OutArcIt a(_gr, n); a != INVALID; ++a) {
kpeter@765
   476
            if (_comp[_gr.target(a)] == k) _out_arcs[n].push_back(a);
kpeter@765
   477
          }
kpeter@765
   478
        }
kpeter@765
   479
      }
kpeter@765
   480
    }
kpeter@765
   481
kpeter@765
   482
    // Initialize path data for the current component
kpeter@765
   483
    bool initComponent(int comp) {
kpeter@765
   484
      _nodes = &(_comp_nodes[comp]);
kpeter@765
   485
      int n = _nodes->size();
kpeter@765
   486
      if (n < 1 || (n == 1 && _out_arcs[(*_nodes)[0]].size() == 0)) {
kpeter@765
   487
        return false;
kpeter@765
   488
      }      
kpeter@765
   489
      for (int i = 0; i < n; ++i) {
kpeter@767
   490
        _data[(*_nodes)[i]].resize(n + 1, PathData(INF));
kpeter@765
   491
      }
kpeter@765
   492
      return true;
kpeter@765
   493
    }
kpeter@765
   494
kpeter@765
   495
    // Process all rounds of computing path data for the current component.
kpeter@765
   496
    // _data[v][k] is the length of a shortest directed walk from the root
kpeter@765
   497
    // node to node v containing exactly k arcs.
kpeter@765
   498
    void processRounds() {
kpeter@765
   499
      Node start = (*_nodes)[0];
kpeter@767
   500
      _data[start][0] = PathData(0);
kpeter@765
   501
      _process.clear();
kpeter@765
   502
      _process.push_back(start);
kpeter@765
   503
kpeter@765
   504
      int k, n = _nodes->size();
kpeter@765
   505
      for (k = 1; k <= n && int(_process.size()) < n; ++k) {
kpeter@765
   506
        processNextBuildRound(k);
kpeter@765
   507
      }
kpeter@765
   508
      for ( ; k <= n; ++k) {
kpeter@765
   509
        processNextFullRound(k);
kpeter@765
   510
      }
kpeter@765
   511
    }
kpeter@765
   512
kpeter@765
   513
    // Process one round and rebuild _process
kpeter@765
   514
    void processNextBuildRound(int k) {
kpeter@765
   515
      std::vector<Node> next;
kpeter@765
   516
      Node u, v;
kpeter@765
   517
      Arc e;
kpeter@765
   518
      LargeValue d;
kpeter@765
   519
      for (int i = 0; i < int(_process.size()); ++i) {
kpeter@765
   520
        u = _process[i];
kpeter@765
   521
        for (int j = 0; j < int(_out_arcs[u].size()); ++j) {
kpeter@765
   522
          e = _out_arcs[u][j];
kpeter@765
   523
          v = _gr.target(e);
kpeter@765
   524
          d = _data[u][k-1].dist + _length[e];
kpeter@767
   525
          if (_tolerance.less(d, _data[v][k].dist)) {
kpeter@767
   526
            if (_data[v][k].dist == INF) next.push_back(v);
kpeter@767
   527
            _data[v][k] = PathData(d, e);
kpeter@765
   528
          }
kpeter@765
   529
        }
kpeter@765
   530
      }
kpeter@765
   531
      _process.swap(next);
kpeter@765
   532
    }
kpeter@765
   533
kpeter@765
   534
    // Process one round using _nodes instead of _process
kpeter@765
   535
    void processNextFullRound(int k) {
kpeter@765
   536
      Node u, v;
kpeter@765
   537
      Arc e;
kpeter@765
   538
      LargeValue d;
kpeter@765
   539
      for (int i = 0; i < int(_nodes->size()); ++i) {
kpeter@765
   540
        u = (*_nodes)[i];
kpeter@765
   541
        for (int j = 0; j < int(_out_arcs[u].size()); ++j) {
kpeter@765
   542
          e = _out_arcs[u][j];
kpeter@765
   543
          v = _gr.target(e);
kpeter@765
   544
          d = _data[u][k-1].dist + _length[e];
kpeter@767
   545
          if (_tolerance.less(d, _data[v][k].dist)) {
kpeter@767
   546
            _data[v][k] = PathData(d, e);
kpeter@765
   547
          }
kpeter@765
   548
        }
kpeter@765
   549
      }
kpeter@765
   550
    }
kpeter@765
   551
kpeter@765
   552
    // Update the minimum cycle mean
kpeter@765
   553
    void updateMinMean() {
kpeter@765
   554
      int n = _nodes->size();
kpeter@765
   555
      for (int i = 0; i < n; ++i) {
kpeter@765
   556
        Node u = (*_nodes)[i];
kpeter@767
   557
        if (_data[u][n].dist == INF) continue;
kpeter@765
   558
        LargeValue length, max_length = 0;
kpeter@765
   559
        int size, max_size = 1;
kpeter@765
   560
        bool found_curr = false;
kpeter@765
   561
        for (int k = 0; k < n; ++k) {
kpeter@767
   562
          if (_data[u][k].dist == INF) continue;
kpeter@765
   563
          length = _data[u][n].dist - _data[u][k].dist;
kpeter@765
   564
          size = n - k;
kpeter@765
   565
          if (!found_curr || length * max_size > max_length * size) {
kpeter@765
   566
            found_curr = true;
kpeter@765
   567
            max_length = length;
kpeter@765
   568
            max_size = size;
kpeter@765
   569
          }
kpeter@765
   570
        }
kpeter@765
   571
        if ( found_curr && (_cycle_node == INVALID ||
kpeter@765
   572
             max_length * _cycle_size < _cycle_length * max_size) ) {
kpeter@765
   573
          _cycle_length = max_length;
kpeter@765
   574
          _cycle_size = max_size;
kpeter@765
   575
          _cycle_node = u;
kpeter@765
   576
        }
kpeter@765
   577
      }
kpeter@765
   578
    }
kpeter@765
   579
kpeter@765
   580
  }; //class Karp
kpeter@765
   581
kpeter@765
   582
  ///@}
kpeter@765
   583
kpeter@765
   584
} //namespace lemon
kpeter@765
   585
kpeter@765
   586
#endif //LEMON_KARP_H