lemon/bellman_ford.h
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 01 Nov 2018 11:27:05 +0100
changeset 1197 f179aa1045a4
parent 1080 c5cd8960df74
child 1130 0759d974de81
permissions -rw-r--r--
Suppress unused typdef warnings (#615)
alpar@877
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
kpeter@696
     2
 *
alpar@877
     3
 * This file is a part of LEMON, a generic C++ optimization library.
kpeter@696
     4
 *
alpar@1092
     5
 * Copyright (C) 2003-2013
kpeter@696
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@696
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@696
     8
 *
kpeter@696
     9
 * Permission to use, modify and distribute this software is granted
kpeter@696
    10
 * provided that this copyright notice appears in all copies. For
kpeter@696
    11
 * precise terms see the accompanying LICENSE file.
kpeter@696
    12
 *
kpeter@696
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@696
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@696
    15
 * purpose.
kpeter@696
    16
 *
kpeter@696
    17
 */
kpeter@696
    18
kpeter@697
    19
#ifndef LEMON_BELLMAN_FORD_H
kpeter@697
    20
#define LEMON_BELLMAN_FORD_H
kpeter@696
    21
kpeter@696
    22
/// \ingroup shortest_path
kpeter@696
    23
/// \file
kpeter@696
    24
/// \brief Bellman-Ford algorithm.
kpeter@696
    25
kpeter@781
    26
#include <lemon/list_graph.h>
kpeter@696
    27
#include <lemon/bits/path_dump.h>
kpeter@696
    28
#include <lemon/core.h>
kpeter@696
    29
#include <lemon/error.h>
kpeter@696
    30
#include <lemon/maps.h>
kpeter@697
    31
#include <lemon/path.h>
kpeter@696
    32
kpeter@696
    33
#include <limits>
kpeter@696
    34
kpeter@696
    35
namespace lemon {
kpeter@696
    36
alpar@878
    37
  /// \brief Default OperationTraits for the BellmanFord algorithm class.
alpar@877
    38
  ///
kpeter@697
    39
  /// This operation traits class defines all computational operations
kpeter@697
    40
  /// and constants that are used in the Bellman-Ford algorithm.
kpeter@697
    41
  /// The default implementation is based on the \c numeric_limits class.
kpeter@697
    42
  /// If the numeric type does not have infinity value, then the maximum
kpeter@697
    43
  /// value is used as extremal infinity value.
kpeter@696
    44
  template <
alpar@877
    45
    typename V,
kpeter@697
    46
    bool has_inf = std::numeric_limits<V>::has_infinity>
kpeter@696
    47
  struct BellmanFordDefaultOperationTraits {
alpar@878
    48
    /// \e
kpeter@697
    49
    typedef V Value;
kpeter@696
    50
    /// \brief Gives back the zero value of the type.
kpeter@696
    51
    static Value zero() {
kpeter@696
    52
      return static_cast<Value>(0);
kpeter@696
    53
    }
kpeter@696
    54
    /// \brief Gives back the positive infinity value of the type.
kpeter@696
    55
    static Value infinity() {
kpeter@696
    56
      return std::numeric_limits<Value>::infinity();
kpeter@696
    57
    }
kpeter@696
    58
    /// \brief Gives back the sum of the given two elements.
kpeter@696
    59
    static Value plus(const Value& left, const Value& right) {
kpeter@696
    60
      return left + right;
kpeter@696
    61
    }
kpeter@697
    62
    /// \brief Gives back \c true only if the first value is less than
kpeter@697
    63
    /// the second.
kpeter@696
    64
    static bool less(const Value& left, const Value& right) {
kpeter@696
    65
      return left < right;
kpeter@696
    66
    }
kpeter@696
    67
  };
kpeter@696
    68
kpeter@697
    69
  template <typename V>
kpeter@697
    70
  struct BellmanFordDefaultOperationTraits<V, false> {
kpeter@697
    71
    typedef V Value;
kpeter@696
    72
    static Value zero() {
kpeter@696
    73
      return static_cast<Value>(0);
kpeter@696
    74
    }
kpeter@696
    75
    static Value infinity() {
kpeter@696
    76
      return std::numeric_limits<Value>::max();
kpeter@696
    77
    }
kpeter@696
    78
    static Value plus(const Value& left, const Value& right) {
kpeter@696
    79
      if (left == infinity() || right == infinity()) return infinity();
kpeter@696
    80
      return left + right;
kpeter@696
    81
    }
kpeter@696
    82
    static bool less(const Value& left, const Value& right) {
kpeter@696
    83
      return left < right;
kpeter@696
    84
    }
kpeter@696
    85
  };
alpar@877
    86
kpeter@696
    87
  /// \brief Default traits class of BellmanFord class.
kpeter@696
    88
  ///
kpeter@696
    89
  /// Default traits class of BellmanFord class.
kpeter@697
    90
  /// \param GR The type of the digraph.
kpeter@697
    91
  /// \param LEN The type of the length map.
kpeter@697
    92
  template<typename GR, typename LEN>
kpeter@696
    93
  struct BellmanFordDefaultTraits {
alpar@877
    94
    /// The type of the digraph the algorithm runs on.
kpeter@697
    95
    typedef GR Digraph;
kpeter@696
    96
kpeter@696
    97
    /// \brief The type of the map that stores the arc lengths.
kpeter@696
    98
    ///
kpeter@696
    99
    /// The type of the map that stores the arc lengths.
kpeter@697
   100
    /// It must conform to the \ref concepts::ReadMap "ReadMap" concept.
kpeter@697
   101
    typedef LEN LengthMap;
kpeter@696
   102
kpeter@697
   103
    /// The type of the arc lengths.
kpeter@697
   104
    typedef typename LEN::Value Value;
kpeter@696
   105
kpeter@696
   106
    /// \brief Operation traits for Bellman-Ford algorithm.
kpeter@696
   107
    ///
kpeter@697
   108
    /// It defines the used operations and the infinity value for the
kpeter@697
   109
    /// given \c Value type.
alpar@878
   110
    /// \see BellmanFordDefaultOperationTraits
kpeter@696
   111
    typedef BellmanFordDefaultOperationTraits<Value> OperationTraits;
alpar@877
   112
alpar@877
   113
    /// \brief The type of the map that stores the last arcs of the
kpeter@696
   114
    /// shortest paths.
alpar@877
   115
    ///
kpeter@696
   116
    /// The type of the map that stores the last
kpeter@696
   117
    /// arcs of the shortest paths.
kpeter@697
   118
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@697
   119
    typedef typename GR::template NodeMap<typename GR::Arc> PredMap;
kpeter@696
   120
kpeter@697
   121
    /// \brief Instantiates a \c PredMap.
alpar@877
   122
    ///
alpar@877
   123
    /// This function instantiates a \ref PredMap.
kpeter@697
   124
    /// \param g is the digraph to which we would like to define the
kpeter@697
   125
    /// \ref PredMap.
kpeter@697
   126
    static PredMap *createPredMap(const GR& g) {
kpeter@697
   127
      return new PredMap(g);
kpeter@696
   128
    }
kpeter@696
   129
kpeter@697
   130
    /// \brief The type of the map that stores the distances of the nodes.
kpeter@696
   131
    ///
kpeter@697
   132
    /// The type of the map that stores the distances of the nodes.
kpeter@697
   133
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@697
   134
    typedef typename GR::template NodeMap<typename LEN::Value> DistMap;
kpeter@696
   135
kpeter@697
   136
    /// \brief Instantiates a \c DistMap.
kpeter@696
   137
    ///
alpar@877
   138
    /// This function instantiates a \ref DistMap.
alpar@877
   139
    /// \param g is the digraph to which we would like to define the
kpeter@697
   140
    /// \ref DistMap.
kpeter@697
   141
    static DistMap *createDistMap(const GR& g) {
kpeter@697
   142
      return new DistMap(g);
kpeter@696
   143
    }
kpeter@696
   144
kpeter@696
   145
  };
alpar@877
   146
kpeter@696
   147
  /// \brief %BellmanFord algorithm class.
kpeter@696
   148
  ///
kpeter@696
   149
  /// \ingroup shortest_path
alpar@877
   150
  /// This class provides an efficient implementation of the Bellman-Ford
kpeter@697
   151
  /// algorithm. The maximum time complexity of the algorithm is
kpeter@1080
   152
  /// <tt>O(nm)</tt>.
kpeter@697
   153
  ///
kpeter@697
   154
  /// The Bellman-Ford algorithm solves the single-source shortest path
kpeter@697
   155
  /// problem when the arcs can have negative lengths, but the digraph
kpeter@697
   156
  /// should not contain directed cycles with negative total length.
kpeter@697
   157
  /// If all arc costs are non-negative, consider to use the Dijkstra
kpeter@697
   158
  /// algorithm instead, since it is more efficient.
kpeter@697
   159
  ///
kpeter@697
   160
  /// The arc lengths are passed to the algorithm using a
alpar@877
   161
  /// \ref concepts::ReadMap "ReadMap", so it is easy to change it to any
kpeter@697
   162
  /// kind of length. The type of the length values is determined by the
kpeter@697
   163
  /// \ref concepts::ReadMap::Value "Value" type of the length map.
kpeter@696
   164
  ///
kpeter@697
   165
  /// There is also a \ref bellmanFord() "function-type interface" for the
kpeter@697
   166
  /// Bellman-Ford algorithm, which is convenient in the simplier cases and
kpeter@697
   167
  /// it can be used easier.
kpeter@696
   168
  ///
kpeter@697
   169
  /// \tparam GR The type of the digraph the algorithm runs on.
kpeter@697
   170
  /// The default type is \ref ListDigraph.
kpeter@697
   171
  /// \tparam LEN A \ref concepts::ReadMap "readable" arc map that specifies
kpeter@697
   172
  /// the lengths of the arcs. The default map type is
kpeter@697
   173
  /// \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
kpeter@825
   174
  /// \tparam TR The traits class that defines various types used by the
kpeter@825
   175
  /// algorithm. By default, it is \ref BellmanFordDefaultTraits
kpeter@825
   176
  /// "BellmanFordDefaultTraits<GR, LEN>".
kpeter@825
   177
  /// In most cases, this parameter should not be set directly,
kpeter@825
   178
  /// consider to use the named template parameters instead.
kpeter@696
   179
#ifdef DOXYGEN
kpeter@697
   180
  template <typename GR, typename LEN, typename TR>
kpeter@696
   181
#else
kpeter@697
   182
  template <typename GR=ListDigraph,
kpeter@697
   183
            typename LEN=typename GR::template ArcMap<int>,
kpeter@697
   184
            typename TR=BellmanFordDefaultTraits<GR,LEN> >
kpeter@696
   185
#endif
kpeter@696
   186
  class BellmanFord {
kpeter@696
   187
  public:
kpeter@696
   188
kpeter@696
   189
    ///The type of the underlying digraph.
kpeter@697
   190
    typedef typename TR::Digraph Digraph;
alpar@877
   191
kpeter@697
   192
    /// \brief The type of the arc lengths.
kpeter@697
   193
    typedef typename TR::LengthMap::Value Value;
kpeter@697
   194
    /// \brief The type of the map that stores the arc lengths.
kpeter@697
   195
    typedef typename TR::LengthMap LengthMap;
kpeter@697
   196
    /// \brief The type of the map that stores the last
kpeter@697
   197
    /// arcs of the shortest paths.
kpeter@697
   198
    typedef typename TR::PredMap PredMap;
kpeter@697
   199
    /// \brief The type of the map that stores the distances of the nodes.
kpeter@697
   200
    typedef typename TR::DistMap DistMap;
kpeter@697
   201
    /// The type of the paths.
kpeter@697
   202
    typedef PredMapPath<Digraph, PredMap> Path;
alpar@1074
   203
    ///\brief The \ref lemon::BellmanFordDefaultOperationTraits
kpeter@697
   204
    /// "operation traits class" of the algorithm.
kpeter@697
   205
    typedef typename TR::OperationTraits OperationTraits;
kpeter@697
   206
alpar@1074
   207
    ///\brief The \ref lemon::BellmanFordDefaultTraits "traits class"
alpar@1074
   208
    ///of the algorithm.
kpeter@697
   209
    typedef TR Traits;
kpeter@697
   210
kpeter@697
   211
  private:
kpeter@696
   212
kpeter@696
   213
    typedef typename Digraph::Node Node;
kpeter@696
   214
    typedef typename Digraph::NodeIt NodeIt;
kpeter@696
   215
    typedef typename Digraph::Arc Arc;
kpeter@696
   216
    typedef typename Digraph::OutArcIt OutArcIt;
kpeter@697
   217
kpeter@697
   218
    // Pointer to the underlying digraph.
kpeter@697
   219
    const Digraph *_gr;
kpeter@697
   220
    // Pointer to the length map
kpeter@697
   221
    const LengthMap *_length;
kpeter@697
   222
    // Pointer to the map of predecessors arcs.
kpeter@696
   223
    PredMap *_pred;
kpeter@697
   224
    // Indicates if _pred is locally allocated (true) or not.
kpeter@697
   225
    bool _local_pred;
kpeter@697
   226
    // Pointer to the map of distances.
kpeter@696
   227
    DistMap *_dist;
kpeter@697
   228
    // Indicates if _dist is locally allocated (true) or not.
kpeter@697
   229
    bool _local_dist;
kpeter@696
   230
kpeter@696
   231
    typedef typename Digraph::template NodeMap<bool> MaskMap;
kpeter@696
   232
    MaskMap *_mask;
kpeter@696
   233
kpeter@696
   234
    std::vector<Node> _process;
kpeter@696
   235
kpeter@697
   236
    // Creates the maps if necessary.
kpeter@696
   237
    void create_maps() {
kpeter@696
   238
      if(!_pred) {
alpar@877
   239
        _local_pred = true;
alpar@877
   240
        _pred = Traits::createPredMap(*_gr);
kpeter@696
   241
      }
kpeter@696
   242
      if(!_dist) {
alpar@877
   243
        _local_dist = true;
alpar@877
   244
        _dist = Traits::createDistMap(*_gr);
kpeter@696
   245
      }
kpeter@804
   246
      if(!_mask) {
kpeter@804
   247
        _mask = new MaskMap(*_gr);
kpeter@804
   248
      }
kpeter@696
   249
    }
alpar@877
   250
kpeter@696
   251
  public :
alpar@877
   252
kpeter@696
   253
    typedef BellmanFord Create;
kpeter@696
   254
kpeter@697
   255
    /// \name Named Template Parameters
kpeter@696
   256
kpeter@696
   257
    ///@{
kpeter@696
   258
kpeter@696
   259
    template <class T>
kpeter@697
   260
    struct SetPredMapTraits : public Traits {
kpeter@696
   261
      typedef T PredMap;
kpeter@696
   262
      static PredMap *createPredMap(const Digraph&) {
kpeter@696
   263
        LEMON_ASSERT(false, "PredMap is not initialized");
kpeter@696
   264
        return 0; // ignore warnings
kpeter@696
   265
      }
kpeter@696
   266
    };
kpeter@696
   267
kpeter@697
   268
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@697
   269
    /// \c PredMap type.
kpeter@696
   270
    ///
kpeter@697
   271
    /// \ref named-templ-param "Named parameter" for setting
kpeter@697
   272
    /// \c PredMap type.
kpeter@697
   273
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@696
   274
    template <class T>
alpar@877
   275
    struct SetPredMap
kpeter@697
   276
      : public BellmanFord< Digraph, LengthMap, SetPredMapTraits<T> > {
kpeter@697
   277
      typedef BellmanFord< Digraph, LengthMap, SetPredMapTraits<T> > Create;
kpeter@696
   278
    };
alpar@877
   279
kpeter@696
   280
    template <class T>
kpeter@697
   281
    struct SetDistMapTraits : public Traits {
kpeter@696
   282
      typedef T DistMap;
kpeter@696
   283
      static DistMap *createDistMap(const Digraph&) {
kpeter@696
   284
        LEMON_ASSERT(false, "DistMap is not initialized");
kpeter@696
   285
        return 0; // ignore warnings
kpeter@696
   286
      }
kpeter@696
   287
    };
kpeter@696
   288
kpeter@697
   289
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@697
   290
    /// \c DistMap type.
kpeter@696
   291
    ///
kpeter@697
   292
    /// \ref named-templ-param "Named parameter" for setting
kpeter@697
   293
    /// \c DistMap type.
kpeter@697
   294
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@696
   295
    template <class T>
alpar@877
   296
    struct SetDistMap
kpeter@697
   297
      : public BellmanFord< Digraph, LengthMap, SetDistMapTraits<T> > {
kpeter@697
   298
      typedef BellmanFord< Digraph, LengthMap, SetDistMapTraits<T> > Create;
kpeter@696
   299
    };
kpeter@697
   300
kpeter@696
   301
    template <class T>
kpeter@697
   302
    struct SetOperationTraitsTraits : public Traits {
kpeter@696
   303
      typedef T OperationTraits;
kpeter@696
   304
    };
alpar@877
   305
alpar@877
   306
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@697
   307
    /// \c OperationTraits type.
kpeter@696
   308
    ///
kpeter@697
   309
    /// \ref named-templ-param "Named parameter" for setting
kpeter@697
   310
    /// \c OperationTraits type.
kpeter@786
   311
    /// For more information, see \ref BellmanFordDefaultOperationTraits.
kpeter@696
   312
    template <class T>
kpeter@696
   313
    struct SetOperationTraits
kpeter@697
   314
      : public BellmanFord< Digraph, LengthMap, SetOperationTraitsTraits<T> > {
kpeter@697
   315
      typedef BellmanFord< Digraph, LengthMap, SetOperationTraitsTraits<T> >
kpeter@696
   316
      Create;
kpeter@696
   317
    };
alpar@877
   318
kpeter@696
   319
    ///@}
kpeter@696
   320
kpeter@696
   321
  protected:
alpar@877
   322
kpeter@696
   323
    BellmanFord() {}
kpeter@696
   324
alpar@877
   325
  public:
alpar@877
   326
kpeter@696
   327
    /// \brief Constructor.
kpeter@696
   328
    ///
kpeter@697
   329
    /// Constructor.
kpeter@697
   330
    /// \param g The digraph the algorithm runs on.
kpeter@697
   331
    /// \param length The length map used by the algorithm.
kpeter@697
   332
    BellmanFord(const Digraph& g, const LengthMap& length) :
kpeter@697
   333
      _gr(&g), _length(&length),
kpeter@697
   334
      _pred(0), _local_pred(false),
kpeter@697
   335
      _dist(0), _local_dist(false), _mask(0) {}
alpar@877
   336
kpeter@696
   337
    ///Destructor.
kpeter@696
   338
    ~BellmanFord() {
kpeter@697
   339
      if(_local_pred) delete _pred;
kpeter@697
   340
      if(_local_dist) delete _dist;
kpeter@696
   341
      if(_mask) delete _mask;
kpeter@696
   342
    }
kpeter@696
   343
kpeter@696
   344
    /// \brief Sets the length map.
kpeter@696
   345
    ///
kpeter@696
   346
    /// Sets the length map.
kpeter@697
   347
    /// \return <tt>(*this)</tt>
kpeter@697
   348
    BellmanFord &lengthMap(const LengthMap &map) {
kpeter@697
   349
      _length = &map;
kpeter@696
   350
      return *this;
kpeter@696
   351
    }
kpeter@696
   352
kpeter@697
   353
    /// \brief Sets the map that stores the predecessor arcs.
kpeter@696
   354
    ///
kpeter@697
   355
    /// Sets the map that stores the predecessor arcs.
kpeter@697
   356
    /// If you don't use this function before calling \ref run()
kpeter@697
   357
    /// or \ref init(), an instance will be allocated automatically.
kpeter@697
   358
    /// The destructor deallocates this automatically allocated map,
kpeter@697
   359
    /// of course.
kpeter@697
   360
    /// \return <tt>(*this)</tt>
kpeter@697
   361
    BellmanFord &predMap(PredMap &map) {
kpeter@697
   362
      if(_local_pred) {
alpar@877
   363
        delete _pred;
alpar@877
   364
        _local_pred=false;
kpeter@696
   365
      }
kpeter@697
   366
      _pred = &map;
kpeter@696
   367
      return *this;
kpeter@696
   368
    }
kpeter@696
   369
kpeter@697
   370
    /// \brief Sets the map that stores the distances of the nodes.
kpeter@696
   371
    ///
kpeter@697
   372
    /// Sets the map that stores the distances of the nodes calculated
kpeter@697
   373
    /// by the algorithm.
kpeter@697
   374
    /// If you don't use this function before calling \ref run()
kpeter@697
   375
    /// or \ref init(), an instance will be allocated automatically.
kpeter@697
   376
    /// The destructor deallocates this automatically allocated map,
kpeter@697
   377
    /// of course.
kpeter@697
   378
    /// \return <tt>(*this)</tt>
kpeter@697
   379
    BellmanFord &distMap(DistMap &map) {
kpeter@697
   380
      if(_local_dist) {
alpar@877
   381
        delete _dist;
alpar@877
   382
        _local_dist=false;
kpeter@696
   383
      }
kpeter@697
   384
      _dist = &map;
kpeter@696
   385
      return *this;
kpeter@696
   386
    }
kpeter@696
   387
kpeter@697
   388
    /// \name Execution Control
kpeter@697
   389
    /// The simplest way to execute the Bellman-Ford algorithm is to use
kpeter@697
   390
    /// one of the member functions called \ref run().\n
kpeter@697
   391
    /// If you need better control on the execution, you have to call
kpeter@697
   392
    /// \ref init() first, then you can add several source nodes
kpeter@697
   393
    /// with \ref addSource(). Finally the actual path computation can be
kpeter@697
   394
    /// performed with \ref start(), \ref checkedStart() or
kpeter@697
   395
    /// \ref limitedStart().
kpeter@696
   396
kpeter@696
   397
    ///@{
kpeter@696
   398
kpeter@696
   399
    /// \brief Initializes the internal data structures.
alpar@877
   400
    ///
kpeter@697
   401
    /// Initializes the internal data structures. The optional parameter
kpeter@697
   402
    /// is the initial distance of each node.
kpeter@696
   403
    void init(const Value value = OperationTraits::infinity()) {
kpeter@696
   404
      create_maps();
kpeter@697
   405
      for (NodeIt it(*_gr); it != INVALID; ++it) {
alpar@877
   406
        _pred->set(it, INVALID);
alpar@877
   407
        _dist->set(it, value);
kpeter@696
   408
      }
kpeter@696
   409
      _process.clear();
kpeter@696
   410
      if (OperationTraits::less(value, OperationTraits::infinity())) {
alpar@877
   411
        for (NodeIt it(*_gr); it != INVALID; ++it) {
alpar@877
   412
          _process.push_back(it);
alpar@877
   413
          _mask->set(it, true);
alpar@877
   414
        }
kpeter@804
   415
      } else {
alpar@877
   416
        for (NodeIt it(*_gr); it != INVALID; ++it) {
alpar@877
   417
          _mask->set(it, false);
alpar@877
   418
        }
kpeter@696
   419
      }
kpeter@696
   420
    }
alpar@877
   421
kpeter@696
   422
    /// \brief Adds a new source node.
kpeter@696
   423
    ///
kpeter@697
   424
    /// This function adds a new source node. The optional second parameter
kpeter@697
   425
    /// is the initial distance of the node.
kpeter@696
   426
    void addSource(Node source, Value dst = OperationTraits::zero()) {
kpeter@696
   427
      _dist->set(source, dst);
kpeter@696
   428
      if (!(*_mask)[source]) {
alpar@877
   429
        _process.push_back(source);
alpar@877
   430
        _mask->set(source, true);
kpeter@696
   431
      }
kpeter@696
   432
    }
kpeter@696
   433
kpeter@696
   434
    /// \brief Executes one round from the Bellman-Ford algorithm.
kpeter@696
   435
    ///
kpeter@696
   436
    /// If the algoritm calculated the distances in the previous round
kpeter@697
   437
    /// exactly for the paths of at most \c k arcs, then this function
kpeter@697
   438
    /// will calculate the distances exactly for the paths of at most
kpeter@697
   439
    /// <tt>k+1</tt> arcs. Performing \c k iterations using this function
kpeter@697
   440
    /// calculates the shortest path distances exactly for the paths
kpeter@697
   441
    /// consisting of at most \c k arcs.
kpeter@696
   442
    ///
kpeter@696
   443
    /// \warning The paths with limited arc number cannot be retrieved
kpeter@697
   444
    /// easily with \ref path() or \ref predArc() functions. If you also
kpeter@697
   445
    /// need the shortest paths and not only the distances, you should
kpeter@697
   446
    /// store the \ref predMap() "predecessor map" after each iteration
kpeter@697
   447
    /// and build the path manually.
kpeter@696
   448
    ///
kpeter@696
   449
    /// \return \c true when the algorithm have not found more shorter
kpeter@696
   450
    /// paths.
kpeter@697
   451
    ///
kpeter@697
   452
    /// \see ActiveIt
kpeter@696
   453
    bool processNextRound() {
kpeter@696
   454
      for (int i = 0; i < int(_process.size()); ++i) {
alpar@877
   455
        _mask->set(_process[i], false);
kpeter@696
   456
      }
kpeter@696
   457
      std::vector<Node> nextProcess;
kpeter@696
   458
      std::vector<Value> values(_process.size());
kpeter@696
   459
      for (int i = 0; i < int(_process.size()); ++i) {
alpar@877
   460
        values[i] = (*_dist)[_process[i]];
kpeter@696
   461
      }
kpeter@696
   462
      for (int i = 0; i < int(_process.size()); ++i) {
alpar@877
   463
        for (OutArcIt it(*_gr, _process[i]); it != INVALID; ++it) {
alpar@877
   464
          Node target = _gr->target(it);
alpar@877
   465
          Value relaxed = OperationTraits::plus(values[i], (*_length)[it]);
alpar@877
   466
          if (OperationTraits::less(relaxed, (*_dist)[target])) {
alpar@877
   467
            _pred->set(target, it);
alpar@877
   468
            _dist->set(target, relaxed);
alpar@877
   469
            if (!(*_mask)[target]) {
alpar@877
   470
              _mask->set(target, true);
alpar@877
   471
              nextProcess.push_back(target);
alpar@877
   472
            }
alpar@877
   473
          }
alpar@877
   474
        }
kpeter@696
   475
      }
kpeter@696
   476
      _process.swap(nextProcess);
kpeter@696
   477
      return _process.empty();
kpeter@696
   478
    }
kpeter@696
   479
kpeter@696
   480
    /// \brief Executes one weak round from the Bellman-Ford algorithm.
kpeter@696
   481
    ///
kpeter@697
   482
    /// If the algorithm calculated the distances in the previous round
kpeter@697
   483
    /// at least for the paths of at most \c k arcs, then this function
kpeter@697
   484
    /// will calculate the distances at least for the paths of at most
kpeter@697
   485
    /// <tt>k+1</tt> arcs.
kpeter@697
   486
    /// This function does not make it possible to calculate the shortest
kpeter@697
   487
    /// path distances exactly for paths consisting of at most \c k arcs,
kpeter@697
   488
    /// this is why it is called weak round.
kpeter@697
   489
    ///
kpeter@697
   490
    /// \return \c true when the algorithm have not found more shorter
kpeter@697
   491
    /// paths.
kpeter@697
   492
    ///
kpeter@697
   493
    /// \see ActiveIt
kpeter@696
   494
    bool processNextWeakRound() {
kpeter@696
   495
      for (int i = 0; i < int(_process.size()); ++i) {
alpar@877
   496
        _mask->set(_process[i], false);
kpeter@696
   497
      }
kpeter@696
   498
      std::vector<Node> nextProcess;
kpeter@696
   499
      for (int i = 0; i < int(_process.size()); ++i) {
alpar@877
   500
        for (OutArcIt it(*_gr, _process[i]); it != INVALID; ++it) {
alpar@877
   501
          Node target = _gr->target(it);
alpar@877
   502
          Value relaxed =
alpar@877
   503
            OperationTraits::plus((*_dist)[_process[i]], (*_length)[it]);
alpar@877
   504
          if (OperationTraits::less(relaxed, (*_dist)[target])) {
alpar@877
   505
            _pred->set(target, it);
alpar@877
   506
            _dist->set(target, relaxed);
alpar@877
   507
            if (!(*_mask)[target]) {
alpar@877
   508
              _mask->set(target, true);
alpar@877
   509
              nextProcess.push_back(target);
alpar@877
   510
            }
alpar@877
   511
          }
alpar@877
   512
        }
kpeter@696
   513
      }
kpeter@696
   514
      _process.swap(nextProcess);
kpeter@696
   515
      return _process.empty();
kpeter@696
   516
    }
kpeter@696
   517
kpeter@696
   518
    /// \brief Executes the algorithm.
kpeter@696
   519
    ///
kpeter@697
   520
    /// Executes the algorithm.
kpeter@696
   521
    ///
kpeter@697
   522
    /// This method runs the Bellman-Ford algorithm from the root node(s)
kpeter@697
   523
    /// in order to compute the shortest path to each node.
kpeter@697
   524
    ///
kpeter@697
   525
    /// The algorithm computes
kpeter@697
   526
    /// - the shortest path tree (forest),
kpeter@697
   527
    /// - the distance of each node from the root(s).
kpeter@697
   528
    ///
kpeter@697
   529
    /// \pre init() must be called and at least one root node should be
kpeter@697
   530
    /// added with addSource() before using this function.
kpeter@696
   531
    void start() {
kpeter@697
   532
      int num = countNodes(*_gr) - 1;
kpeter@696
   533
      for (int i = 0; i < num; ++i) {
alpar@877
   534
        if (processNextWeakRound()) break;
kpeter@696
   535
      }
kpeter@696
   536
    }
kpeter@696
   537
kpeter@696
   538
    /// \brief Executes the algorithm and checks the negative cycles.
kpeter@696
   539
    ///
kpeter@697
   540
    /// Executes the algorithm and checks the negative cycles.
kpeter@696
   541
    ///
kpeter@697
   542
    /// This method runs the Bellman-Ford algorithm from the root node(s)
kpeter@697
   543
    /// in order to compute the shortest path to each node and also checks
kpeter@697
   544
    /// if the digraph contains cycles with negative total length.
kpeter@697
   545
    ///
alpar@877
   546
    /// The algorithm computes
kpeter@697
   547
    /// - the shortest path tree (forest),
kpeter@697
   548
    /// - the distance of each node from the root(s).
alpar@877
   549
    ///
kpeter@696
   550
    /// \return \c false if there is a negative cycle in the digraph.
kpeter@697
   551
    ///
kpeter@697
   552
    /// \pre init() must be called and at least one root node should be
alpar@877
   553
    /// added with addSource() before using this function.
kpeter@696
   554
    bool checkedStart() {
kpeter@697
   555
      int num = countNodes(*_gr);
kpeter@696
   556
      for (int i = 0; i < num; ++i) {
alpar@877
   557
        if (processNextWeakRound()) return true;
kpeter@696
   558
      }
kpeter@696
   559
      return _process.empty();
kpeter@696
   560
    }
kpeter@696
   561
kpeter@697
   562
    /// \brief Executes the algorithm with arc number limit.
kpeter@696
   563
    ///
kpeter@697
   564
    /// Executes the algorithm with arc number limit.
kpeter@696
   565
    ///
kpeter@697
   566
    /// This method runs the Bellman-Ford algorithm from the root node(s)
kpeter@697
   567
    /// in order to compute the shortest path distance for each node
kpeter@697
   568
    /// using only the paths consisting of at most \c num arcs.
kpeter@697
   569
    ///
kpeter@697
   570
    /// The algorithm computes
kpeter@697
   571
    /// - the limited distance of each node from the root(s),
kpeter@697
   572
    /// - the predecessor arc for each node.
kpeter@696
   573
    ///
kpeter@696
   574
    /// \warning The paths with limited arc number cannot be retrieved
kpeter@697
   575
    /// easily with \ref path() or \ref predArc() functions. If you also
kpeter@697
   576
    /// need the shortest paths and not only the distances, you should
kpeter@697
   577
    /// store the \ref predMap() "predecessor map" after each iteration
kpeter@697
   578
    /// and build the path manually.
kpeter@696
   579
    ///
kpeter@697
   580
    /// \pre init() must be called and at least one root node should be
alpar@877
   581
    /// added with addSource() before using this function.
kpeter@696
   582
    void limitedStart(int num) {
kpeter@696
   583
      for (int i = 0; i < num; ++i) {
alpar@877
   584
        if (processNextRound()) break;
kpeter@696
   585
      }
kpeter@696
   586
    }
alpar@877
   587
kpeter@697
   588
    /// \brief Runs the algorithm from the given root node.
alpar@877
   589
    ///
kpeter@697
   590
    /// This method runs the Bellman-Ford algorithm from the given root
kpeter@697
   591
    /// node \c s in order to compute the shortest path to each node.
kpeter@696
   592
    ///
kpeter@697
   593
    /// The algorithm computes
kpeter@697
   594
    /// - the shortest path tree (forest),
kpeter@697
   595
    /// - the distance of each node from the root(s).
kpeter@697
   596
    ///
kpeter@697
   597
    /// \note bf.run(s) is just a shortcut of the following code.
kpeter@697
   598
    /// \code
kpeter@697
   599
    ///   bf.init();
kpeter@697
   600
    ///   bf.addSource(s);
kpeter@697
   601
    ///   bf.start();
kpeter@697
   602
    /// \endcode
kpeter@696
   603
    void run(Node s) {
kpeter@696
   604
      init();
kpeter@696
   605
      addSource(s);
kpeter@696
   606
      start();
kpeter@696
   607
    }
alpar@877
   608
kpeter@697
   609
    /// \brief Runs the algorithm from the given root node with arc
kpeter@697
   610
    /// number limit.
alpar@877
   611
    ///
kpeter@697
   612
    /// This method runs the Bellman-Ford algorithm from the given root
kpeter@697
   613
    /// node \c s in order to compute the shortest path distance for each
kpeter@697
   614
    /// node using only the paths consisting of at most \c num arcs.
kpeter@696
   615
    ///
kpeter@697
   616
    /// The algorithm computes
kpeter@697
   617
    /// - the limited distance of each node from the root(s),
kpeter@697
   618
    /// - the predecessor arc for each node.
kpeter@697
   619
    ///
kpeter@697
   620
    /// \warning The paths with limited arc number cannot be retrieved
kpeter@697
   621
    /// easily with \ref path() or \ref predArc() functions. If you also
kpeter@697
   622
    /// need the shortest paths and not only the distances, you should
kpeter@697
   623
    /// store the \ref predMap() "predecessor map" after each iteration
kpeter@697
   624
    /// and build the path manually.
kpeter@697
   625
    ///
kpeter@697
   626
    /// \note bf.run(s, num) is just a shortcut of the following code.
kpeter@697
   627
    /// \code
kpeter@697
   628
    ///   bf.init();
kpeter@697
   629
    ///   bf.addSource(s);
kpeter@697
   630
    ///   bf.limitedStart(num);
kpeter@697
   631
    /// \endcode
kpeter@696
   632
    void run(Node s, int num) {
kpeter@696
   633
      init();
kpeter@696
   634
      addSource(s);
kpeter@696
   635
      limitedStart(num);
kpeter@696
   636
    }
alpar@877
   637
kpeter@696
   638
    ///@}
kpeter@696
   639
kpeter@697
   640
    /// \brief LEMON iterator for getting the active nodes.
kpeter@696
   641
    ///
kpeter@697
   642
    /// This class provides a common style LEMON iterator that traverses
kpeter@697
   643
    /// the active nodes of the Bellman-Ford algorithm after the last
kpeter@697
   644
    /// phase. These nodes should be checked in the next phase to
kpeter@697
   645
    /// find augmenting arcs outgoing from them.
kpeter@696
   646
    class ActiveIt {
kpeter@696
   647
    public:
kpeter@696
   648
kpeter@696
   649
      /// \brief Constructor.
kpeter@696
   650
      ///
kpeter@697
   651
      /// Constructor for getting the active nodes of the given BellmanFord
alpar@877
   652
      /// instance.
kpeter@696
   653
      ActiveIt(const BellmanFord& algorithm) : _algorithm(&algorithm)
kpeter@696
   654
      {
kpeter@696
   655
        _index = _algorithm->_process.size() - 1;
kpeter@696
   656
      }
kpeter@696
   657
kpeter@696
   658
      /// \brief Invalid constructor.
kpeter@696
   659
      ///
kpeter@696
   660
      /// Invalid constructor.
kpeter@696
   661
      ActiveIt(Invalid) : _algorithm(0), _index(-1) {}
kpeter@696
   662
kpeter@697
   663
      /// \brief Conversion to \c Node.
kpeter@696
   664
      ///
kpeter@697
   665
      /// Conversion to \c Node.
alpar@877
   666
      operator Node() const {
kpeter@696
   667
        return _index >= 0 ? _algorithm->_process[_index] : INVALID;
kpeter@696
   668
      }
kpeter@696
   669
kpeter@696
   670
      /// \brief Increment operator.
kpeter@696
   671
      ///
kpeter@696
   672
      /// Increment operator.
kpeter@696
   673
      ActiveIt& operator++() {
kpeter@696
   674
        --_index;
alpar@877
   675
        return *this;
kpeter@696
   676
      }
kpeter@696
   677
alpar@877
   678
      bool operator==(const ActiveIt& it) const {
alpar@877
   679
        return static_cast<Node>(*this) == static_cast<Node>(it);
kpeter@696
   680
      }
alpar@877
   681
      bool operator!=(const ActiveIt& it) const {
alpar@877
   682
        return static_cast<Node>(*this) != static_cast<Node>(it);
kpeter@696
   683
      }
alpar@877
   684
      bool operator<(const ActiveIt& it) const {
alpar@877
   685
        return static_cast<Node>(*this) < static_cast<Node>(it);
kpeter@696
   686
      }
alpar@877
   687
kpeter@696
   688
    private:
kpeter@696
   689
      const BellmanFord* _algorithm;
kpeter@696
   690
      int _index;
kpeter@696
   691
    };
alpar@877
   692
kpeter@697
   693
    /// \name Query Functions
kpeter@697
   694
    /// The result of the Bellman-Ford algorithm can be obtained using these
kpeter@697
   695
    /// functions.\n
kpeter@697
   696
    /// Either \ref run() or \ref init() should be called before using them.
alpar@877
   697
kpeter@697
   698
    ///@{
kpeter@696
   699
kpeter@697
   700
    /// \brief The shortest path to the given node.
alpar@877
   701
    ///
kpeter@697
   702
    /// Gives back the shortest path to the given node from the root(s).
kpeter@697
   703
    ///
kpeter@697
   704
    /// \warning \c t should be reached from the root(s).
kpeter@697
   705
    ///
kpeter@697
   706
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   707
    /// using this function.
kpeter@697
   708
    Path path(Node t) const
kpeter@697
   709
    {
kpeter@697
   710
      return Path(*_gr, *_pred, t);
kpeter@697
   711
    }
alpar@877
   712
kpeter@697
   713
    /// \brief The distance of the given node from the root(s).
kpeter@697
   714
    ///
kpeter@697
   715
    /// Returns the distance of the given node from the root(s).
kpeter@697
   716
    ///
kpeter@697
   717
    /// \warning If node \c v is not reached from the root(s), then
kpeter@697
   718
    /// the return value of this function is undefined.
kpeter@697
   719
    ///
kpeter@697
   720
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   721
    /// using this function.
kpeter@697
   722
    Value dist(Node v) const { return (*_dist)[v]; }
kpeter@696
   723
kpeter@697
   724
    /// \brief Returns the 'previous arc' of the shortest path tree for
kpeter@697
   725
    /// the given node.
kpeter@697
   726
    ///
kpeter@697
   727
    /// This function returns the 'previous arc' of the shortest path
kpeter@697
   728
    /// tree for node \c v, i.e. it returns the last arc of a
kpeter@697
   729
    /// shortest path from a root to \c v. It is \c INVALID if \c v
kpeter@697
   730
    /// is not reached from the root(s) or if \c v is a root.
kpeter@697
   731
    ///
kpeter@697
   732
    /// The shortest path tree used here is equal to the shortest path
kpeter@786
   733
    /// tree used in \ref predNode() and \ref predMap().
kpeter@697
   734
    ///
kpeter@697
   735
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   736
    /// using this function.
kpeter@697
   737
    Arc predArc(Node v) const { return (*_pred)[v]; }
kpeter@697
   738
kpeter@697
   739
    /// \brief Returns the 'previous node' of the shortest path tree for
kpeter@697
   740
    /// the given node.
kpeter@697
   741
    ///
kpeter@697
   742
    /// This function returns the 'previous node' of the shortest path
kpeter@697
   743
    /// tree for node \c v, i.e. it returns the last but one node of
kpeter@697
   744
    /// a shortest path from a root to \c v. It is \c INVALID if \c v
kpeter@697
   745
    /// is not reached from the root(s) or if \c v is a root.
kpeter@697
   746
    ///
kpeter@697
   747
    /// The shortest path tree used here is equal to the shortest path
kpeter@786
   748
    /// tree used in \ref predArc() and \ref predMap().
kpeter@697
   749
    ///
kpeter@697
   750
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   751
    /// using this function.
alpar@877
   752
    Node predNode(Node v) const {
alpar@877
   753
      return (*_pred)[v] == INVALID ? INVALID : _gr->source((*_pred)[v]);
kpeter@697
   754
    }
alpar@877
   755
kpeter@697
   756
    /// \brief Returns a const reference to the node map that stores the
kpeter@697
   757
    /// distances of the nodes.
kpeter@697
   758
    ///
kpeter@697
   759
    /// Returns a const reference to the node map that stores the distances
kpeter@697
   760
    /// of the nodes calculated by the algorithm.
kpeter@697
   761
    ///
kpeter@697
   762
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   763
    /// using this function.
kpeter@697
   764
    const DistMap &distMap() const { return *_dist;}
alpar@877
   765
kpeter@697
   766
    /// \brief Returns a const reference to the node map that stores the
kpeter@697
   767
    /// predecessor arcs.
kpeter@697
   768
    ///
kpeter@697
   769
    /// Returns a const reference to the node map that stores the predecessor
kpeter@697
   770
    /// arcs, which form the shortest path tree (forest).
kpeter@697
   771
    ///
kpeter@697
   772
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   773
    /// using this function.
kpeter@697
   774
    const PredMap &predMap() const { return *_pred; }
alpar@877
   775
kpeter@697
   776
    /// \brief Checks if a node is reached from the root(s).
kpeter@697
   777
    ///
kpeter@697
   778
    /// Returns \c true if \c v is reached from the root(s).
kpeter@697
   779
    ///
kpeter@697
   780
    /// \pre Either \ref run() or \ref init() must be called before
kpeter@697
   781
    /// using this function.
kpeter@697
   782
    bool reached(Node v) const {
kpeter@697
   783
      return (*_dist)[v] != OperationTraits::infinity();
kpeter@696
   784
    }
kpeter@696
   785
kpeter@699
   786
    /// \brief Gives back a negative cycle.
alpar@877
   787
    ///
kpeter@699
   788
    /// This function gives back a directed cycle with negative total
kpeter@699
   789
    /// length if the algorithm has already found one.
kpeter@699
   790
    /// Otherwise it gives back an empty path.
kpeter@781
   791
    lemon::Path<Digraph> negativeCycle() const {
kpeter@699
   792
      typename Digraph::template NodeMap<int> state(*_gr, -1);
kpeter@699
   793
      lemon::Path<Digraph> cycle;
kpeter@699
   794
      for (int i = 0; i < int(_process.size()); ++i) {
kpeter@699
   795
        if (state[_process[i]] != -1) continue;
kpeter@699
   796
        for (Node v = _process[i]; (*_pred)[v] != INVALID;
kpeter@699
   797
             v = _gr->source((*_pred)[v])) {
kpeter@699
   798
          if (state[v] == i) {
kpeter@699
   799
            cycle.addFront((*_pred)[v]);
kpeter@699
   800
            for (Node u = _gr->source((*_pred)[v]); u != v;
kpeter@699
   801
                 u = _gr->source((*_pred)[u])) {
kpeter@699
   802
              cycle.addFront((*_pred)[u]);
kpeter@699
   803
            }
kpeter@699
   804
            return cycle;
kpeter@699
   805
          }
kpeter@699
   806
          else if (state[v] >= 0) {
kpeter@699
   807
            break;
kpeter@699
   808
          }
kpeter@699
   809
          state[v] = i;
kpeter@699
   810
        }
kpeter@699
   811
      }
kpeter@699
   812
      return cycle;
kpeter@699
   813
    }
alpar@877
   814
kpeter@696
   815
    ///@}
kpeter@696
   816
  };
alpar@877
   817
kpeter@697
   818
  /// \brief Default traits class of bellmanFord() function.
kpeter@696
   819
  ///
kpeter@697
   820
  /// Default traits class of bellmanFord() function.
kpeter@697
   821
  /// \tparam GR The type of the digraph.
kpeter@697
   822
  /// \tparam LEN The type of the length map.
kpeter@697
   823
  template <typename GR, typename LEN>
kpeter@696
   824
  struct BellmanFordWizardDefaultTraits {
alpar@877
   825
    /// The type of the digraph the algorithm runs on.
kpeter@697
   826
    typedef GR Digraph;
kpeter@696
   827
kpeter@696
   828
    /// \brief The type of the map that stores the arc lengths.
kpeter@696
   829
    ///
kpeter@696
   830
    /// The type of the map that stores the arc lengths.
kpeter@696
   831
    /// It must meet the \ref concepts::ReadMap "ReadMap" concept.
kpeter@697
   832
    typedef LEN LengthMap;
kpeter@696
   833
kpeter@697
   834
    /// The type of the arc lengths.
kpeter@697
   835
    typedef typename LEN::Value Value;
kpeter@696
   836
kpeter@696
   837
    /// \brief Operation traits for Bellman-Ford algorithm.
kpeter@696
   838
    ///
kpeter@697
   839
    /// It defines the used operations and the infinity value for the
kpeter@697
   840
    /// given \c Value type.
alpar@878
   841
    /// \see BellmanFordDefaultOperationTraits
kpeter@696
   842
    typedef BellmanFordDefaultOperationTraits<Value> OperationTraits;
kpeter@696
   843
kpeter@696
   844
    /// \brief The type of the map that stores the last
kpeter@696
   845
    /// arcs of the shortest paths.
alpar@877
   846
    ///
kpeter@697
   847
    /// The type of the map that stores the last arcs of the shortest paths.
kpeter@697
   848
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@697
   849
    typedef typename GR::template NodeMap<typename GR::Arc> PredMap;
kpeter@696
   850
kpeter@697
   851
    /// \brief Instantiates a \c PredMap.
alpar@877
   852
    ///
kpeter@697
   853
    /// This function instantiates a \ref PredMap.
kpeter@697
   854
    /// \param g is the digraph to which we would like to define the
kpeter@697
   855
    /// \ref PredMap.
kpeter@697
   856
    static PredMap *createPredMap(const GR &g) {
kpeter@697
   857
      return new PredMap(g);
kpeter@696
   858
    }
kpeter@697
   859
kpeter@697
   860
    /// \brief The type of the map that stores the distances of the nodes.
kpeter@696
   861
    ///
kpeter@697
   862
    /// The type of the map that stores the distances of the nodes.
kpeter@697
   863
    /// It must conform to the \ref concepts::WriteMap "WriteMap" concept.
kpeter@697
   864
    typedef typename GR::template NodeMap<Value> DistMap;
kpeter@697
   865
kpeter@697
   866
    /// \brief Instantiates a \c DistMap.
kpeter@696
   867
    ///
alpar@877
   868
    /// This function instantiates a \ref DistMap.
kpeter@697
   869
    /// \param g is the digraph to which we would like to define the
kpeter@697
   870
    /// \ref DistMap.
kpeter@697
   871
    static DistMap *createDistMap(const GR &g) {
kpeter@697
   872
      return new DistMap(g);
kpeter@696
   873
    }
kpeter@697
   874
kpeter@697
   875
    ///The type of the shortest paths.
kpeter@697
   876
kpeter@697
   877
    ///The type of the shortest paths.
kpeter@697
   878
    ///It must meet the \ref concepts::Path "Path" concept.
kpeter@697
   879
    typedef lemon::Path<Digraph> Path;
kpeter@696
   880
  };
alpar@877
   881
kpeter@697
   882
  /// \brief Default traits class used by BellmanFordWizard.
kpeter@696
   883
  ///
kpeter@697
   884
  /// Default traits class used by BellmanFordWizard.
kpeter@697
   885
  /// \tparam GR The type of the digraph.
kpeter@697
   886
  /// \tparam LEN The type of the length map.
kpeter@697
   887
  template <typename GR, typename LEN>
alpar@877
   888
  class BellmanFordWizardBase
kpeter@697
   889
    : public BellmanFordWizardDefaultTraits<GR, LEN> {
kpeter@696
   890
kpeter@697
   891
    typedef BellmanFordWizardDefaultTraits<GR, LEN> Base;
kpeter@696
   892
  protected:
kpeter@697
   893
    // Type of the nodes in the digraph.
kpeter@696
   894
    typedef typename Base::Digraph::Node Node;
kpeter@696
   895
kpeter@697
   896
    // Pointer to the underlying digraph.
kpeter@696
   897
    void *_graph;
kpeter@697
   898
    // Pointer to the length map
kpeter@696
   899
    void *_length;
kpeter@697
   900
    // Pointer to the map of predecessors arcs.
kpeter@696
   901
    void *_pred;
kpeter@697
   902
    // Pointer to the map of distances.
kpeter@696
   903
    void *_dist;
kpeter@697
   904
    //Pointer to the shortest path to the target node.
kpeter@697
   905
    void *_path;
kpeter@697
   906
    //Pointer to the distance of the target node.
kpeter@697
   907
    void *_di;
kpeter@696
   908
kpeter@696
   909
    public:
kpeter@696
   910
    /// Constructor.
alpar@877
   911
kpeter@697
   912
    /// This constructor does not require parameters, it initiates
kpeter@697
   913
    /// all of the attributes to default values \c 0.
kpeter@697
   914
    BellmanFordWizardBase() :
kpeter@697
   915
      _graph(0), _length(0), _pred(0), _dist(0), _path(0), _di(0) {}
kpeter@696
   916
kpeter@696
   917
    /// Constructor.
alpar@877
   918
kpeter@697
   919
    /// This constructor requires two parameters,
kpeter@697
   920
    /// others are initiated to \c 0.
kpeter@697
   921
    /// \param gr The digraph the algorithm runs on.
kpeter@697
   922
    /// \param len The length map.
alpar@877
   923
    BellmanFordWizardBase(const GR& gr,
alpar@877
   924
                          const LEN& len) :
alpar@877
   925
      _graph(reinterpret_cast<void*>(const_cast<GR*>(&gr))),
alpar@877
   926
      _length(reinterpret_cast<void*>(const_cast<LEN*>(&len))),
kpeter@697
   927
      _pred(0), _dist(0), _path(0), _di(0) {}
kpeter@696
   928
kpeter@696
   929
  };
alpar@877
   930
kpeter@697
   931
  /// \brief Auxiliary class for the function-type interface of the
kpeter@697
   932
  /// \ref BellmanFord "Bellman-Ford" algorithm.
kpeter@697
   933
  ///
kpeter@697
   934
  /// This auxiliary class is created to implement the
kpeter@697
   935
  /// \ref bellmanFord() "function-type interface" of the
kpeter@697
   936
  /// \ref BellmanFord "Bellman-Ford" algorithm.
kpeter@697
   937
  /// It does not have own \ref run() method, it uses the
kpeter@697
   938
  /// functions and features of the plain \ref BellmanFord.
kpeter@697
   939
  ///
kpeter@697
   940
  /// This class should only be used through the \ref bellmanFord()
kpeter@697
   941
  /// function, which makes it easier to use the algorithm.
kpeter@825
   942
  ///
kpeter@825
   943
  /// \tparam TR The traits class that defines various types used by the
kpeter@825
   944
  /// algorithm.
kpeter@697
   945
  template<class TR>
kpeter@697
   946
  class BellmanFordWizard : public TR {
kpeter@697
   947
    typedef TR Base;
kpeter@696
   948
kpeter@697
   949
    typedef typename TR::Digraph Digraph;
kpeter@696
   950
kpeter@696
   951
    typedef typename Digraph::Node Node;
kpeter@696
   952
    typedef typename Digraph::NodeIt NodeIt;
kpeter@696
   953
    typedef typename Digraph::Arc Arc;
kpeter@696
   954
    typedef typename Digraph::OutArcIt ArcIt;
alpar@877
   955
kpeter@697
   956
    typedef typename TR::LengthMap LengthMap;
kpeter@696
   957
    typedef typename LengthMap::Value Value;
kpeter@697
   958
    typedef typename TR::PredMap PredMap;
kpeter@697
   959
    typedef typename TR::DistMap DistMap;
kpeter@697
   960
    typedef typename TR::Path Path;
kpeter@696
   961
kpeter@696
   962
  public:
kpeter@696
   963
    /// Constructor.
kpeter@697
   964
    BellmanFordWizard() : TR() {}
kpeter@696
   965
kpeter@696
   966
    /// \brief Constructor that requires parameters.
kpeter@696
   967
    ///
kpeter@696
   968
    /// Constructor that requires parameters.
kpeter@696
   969
    /// These parameters will be the default values for the traits class.
kpeter@697
   970
    /// \param gr The digraph the algorithm runs on.
kpeter@697
   971
    /// \param len The length map.
alpar@877
   972
    BellmanFordWizard(const Digraph& gr, const LengthMap& len)
kpeter@697
   973
      : TR(gr, len) {}
kpeter@696
   974
kpeter@696
   975
    /// \brief Copy constructor
kpeter@697
   976
    BellmanFordWizard(const TR &b) : TR(b) {}
kpeter@696
   977
kpeter@696
   978
    ~BellmanFordWizard() {}
kpeter@696
   979
kpeter@697
   980
    /// \brief Runs the Bellman-Ford algorithm from the given source node.
alpar@877
   981
    ///
kpeter@697
   982
    /// This method runs the Bellman-Ford algorithm from the given source
kpeter@697
   983
    /// node in order to compute the shortest path to each node.
kpeter@697
   984
    void run(Node s) {
alpar@877
   985
      BellmanFord<Digraph,LengthMap,TR>
alpar@877
   986
        bf(*reinterpret_cast<const Digraph*>(Base::_graph),
kpeter@696
   987
           *reinterpret_cast<const LengthMap*>(Base::_length));
kpeter@696
   988
      if (Base::_pred) bf.predMap(*reinterpret_cast<PredMap*>(Base::_pred));
kpeter@696
   989
      if (Base::_dist) bf.distMap(*reinterpret_cast<DistMap*>(Base::_dist));
kpeter@697
   990
      bf.run(s);
kpeter@696
   991
    }
kpeter@696
   992
kpeter@697
   993
    /// \brief Runs the Bellman-Ford algorithm to find the shortest path
kpeter@697
   994
    /// between \c s and \c t.
kpeter@696
   995
    ///
kpeter@697
   996
    /// This method runs the Bellman-Ford algorithm from node \c s
kpeter@697
   997
    /// in order to compute the shortest path to node \c t.
kpeter@697
   998
    /// Actually, it computes the shortest path to each node, but using
kpeter@697
   999
    /// this function you can retrieve the distance and the shortest path
kpeter@697
  1000
    /// for a single target node easier.
kpeter@697
  1001
    ///
kpeter@697
  1002
    /// \return \c true if \c t is reachable form \c s.
kpeter@697
  1003
    bool run(Node s, Node t) {
kpeter@697
  1004
      BellmanFord<Digraph,LengthMap,TR>
kpeter@697
  1005
        bf(*reinterpret_cast<const Digraph*>(Base::_graph),
kpeter@697
  1006
           *reinterpret_cast<const LengthMap*>(Base::_length));
kpeter@697
  1007
      if (Base::_pred) bf.predMap(*reinterpret_cast<PredMap*>(Base::_pred));
kpeter@697
  1008
      if (Base::_dist) bf.distMap(*reinterpret_cast<DistMap*>(Base::_dist));
kpeter@697
  1009
      bf.run(s);
kpeter@697
  1010
      if (Base::_path) *reinterpret_cast<Path*>(Base::_path) = bf.path(t);
kpeter@697
  1011
      if (Base::_di) *reinterpret_cast<Value*>(Base::_di) = bf.dist(t);
kpeter@697
  1012
      return bf.reached(t);
kpeter@696
  1013
    }
kpeter@696
  1014
kpeter@696
  1015
    template<class T>
kpeter@697
  1016
    struct SetPredMapBase : public Base {
kpeter@696
  1017
      typedef T PredMap;
kpeter@696
  1018
      static PredMap *createPredMap(const Digraph &) { return 0; };
kpeter@697
  1019
      SetPredMapBase(const TR &b) : TR(b) {}
kpeter@696
  1020
    };
alpar@877
  1021
kpeter@697
  1022
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@697
  1023
    /// the predecessor map.
kpeter@696
  1024
    ///
kpeter@697
  1025
    /// \ref named-templ-param "Named parameter" for setting
kpeter@697
  1026
    /// the map that stores the predecessor arcs of the nodes.
kpeter@696
  1027
    template<class T>
kpeter@697
  1028
    BellmanFordWizard<SetPredMapBase<T> > predMap(const T &t) {
kpeter@696
  1029
      Base::_pred=reinterpret_cast<void*>(const_cast<T*>(&t));
kpeter@697
  1030
      return BellmanFordWizard<SetPredMapBase<T> >(*this);
kpeter@696
  1031
    }
alpar@877
  1032
kpeter@696
  1033
    template<class T>
kpeter@697
  1034
    struct SetDistMapBase : public Base {
kpeter@696
  1035
      typedef T DistMap;
kpeter@696
  1036
      static DistMap *createDistMap(const Digraph &) { return 0; };
kpeter@697
  1037
      SetDistMapBase(const TR &b) : TR(b) {}
kpeter@696
  1038
    };
alpar@877
  1039
kpeter@697
  1040
    /// \brief \ref named-templ-param "Named parameter" for setting
kpeter@697
  1041
    /// the distance map.
kpeter@696
  1042
    ///
kpeter@697
  1043
    /// \ref named-templ-param "Named parameter" for setting
kpeter@697
  1044
    /// the map that stores the distances of the nodes calculated
kpeter@697
  1045
    /// by the algorithm.
kpeter@696
  1046
    template<class T>
kpeter@697
  1047
    BellmanFordWizard<SetDistMapBase<T> > distMap(const T &t) {
kpeter@696
  1048
      Base::_dist=reinterpret_cast<void*>(const_cast<T*>(&t));
kpeter@697
  1049
      return BellmanFordWizard<SetDistMapBase<T> >(*this);
kpeter@696
  1050
    }
kpeter@696
  1051
kpeter@696
  1052
    template<class T>
kpeter@697
  1053
    struct SetPathBase : public Base {
kpeter@697
  1054
      typedef T Path;
kpeter@697
  1055
      SetPathBase(const TR &b) : TR(b) {}
kpeter@696
  1056
    };
kpeter@697
  1057
kpeter@697
  1058
    /// \brief \ref named-func-param "Named parameter" for getting
kpeter@697
  1059
    /// the shortest path to the target node.
kpeter@696
  1060
    ///
kpeter@697
  1061
    /// \ref named-func-param "Named parameter" for getting
kpeter@697
  1062
    /// the shortest path to the target node.
kpeter@697
  1063
    template<class T>
kpeter@697
  1064
    BellmanFordWizard<SetPathBase<T> > path(const T &t)
kpeter@697
  1065
    {
kpeter@697
  1066
      Base::_path=reinterpret_cast<void*>(const_cast<T*>(&t));
kpeter@697
  1067
      return BellmanFordWizard<SetPathBase<T> >(*this);
kpeter@697
  1068
    }
kpeter@697
  1069
kpeter@697
  1070
    /// \brief \ref named-func-param "Named parameter" for getting
kpeter@697
  1071
    /// the distance of the target node.
kpeter@696
  1072
    ///
kpeter@697
  1073
    /// \ref named-func-param "Named parameter" for getting
kpeter@697
  1074
    /// the distance of the target node.
kpeter@697
  1075
    BellmanFordWizard dist(const Value &d)
kpeter@697
  1076
    {
kpeter@697
  1077
      Base::_di=reinterpret_cast<void*>(const_cast<Value*>(&d));
kpeter@696
  1078
      return *this;
kpeter@696
  1079
    }
alpar@877
  1080
kpeter@696
  1081
  };
alpar@877
  1082
kpeter@697
  1083
  /// \brief Function type interface for the \ref BellmanFord "Bellman-Ford"
kpeter@697
  1084
  /// algorithm.
kpeter@696
  1085
  ///
kpeter@696
  1086
  /// \ingroup shortest_path
kpeter@697
  1087
  /// Function type interface for the \ref BellmanFord "Bellman-Ford"
kpeter@697
  1088
  /// algorithm.
kpeter@696
  1089
  ///
alpar@877
  1090
  /// This function also has several \ref named-templ-func-param
alpar@877
  1091
  /// "named parameters", they are declared as the members of class
kpeter@696
  1092
  /// \ref BellmanFordWizard.
kpeter@697
  1093
  /// The following examples show how to use these parameters.
kpeter@697
  1094
  /// \code
kpeter@697
  1095
  ///   // Compute shortest path from node s to each node
kpeter@697
  1096
  ///   bellmanFord(g,length).predMap(preds).distMap(dists).run(s);
kpeter@697
  1097
  ///
kpeter@697
  1098
  ///   // Compute shortest path from s to t
kpeter@697
  1099
  ///   bool reached = bellmanFord(g,length).path(p).dist(d).run(s,t);
kpeter@697
  1100
  /// \endcode
kpeter@696
  1101
  /// \warning Don't forget to put the \ref BellmanFordWizard::run() "run()"
kpeter@696
  1102
  /// to the end of the parameter list.
kpeter@696
  1103
  /// \sa BellmanFordWizard
kpeter@696
  1104
  /// \sa BellmanFord
kpeter@697
  1105
  template<typename GR, typename LEN>
kpeter@697
  1106
  BellmanFordWizard<BellmanFordWizardBase<GR,LEN> >
kpeter@697
  1107
  bellmanFord(const GR& digraph,
alpar@877
  1108
              const LEN& length)
kpeter@697
  1109
  {
kpeter@697
  1110
    return BellmanFordWizard<BellmanFordWizardBase<GR,LEN> >(digraph, length);
kpeter@696
  1111
  }
kpeter@696
  1112
kpeter@696
  1113
} //END OF NAMESPACE LEMON
kpeter@696
  1114
kpeter@696
  1115
#endif
kpeter@696
  1116