All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
List of all members
BellmanFord< GR, LEN, TR >::SetPredMap< T > Struct Template Reference

Detailed Description

template<typename GR, typename LEN, typename TR>
template<class T>
struct lemon::BellmanFord< GR, LEN, TR >::SetPredMap< T >

Named parameter for setting PredMap type. It must conform to the WriteMap concept.

#include <lemon/bellman_ford.h>

+ Inheritance diagram for BellmanFord< GR, LEN, TR >::SetPredMap< T >:

Additional Inherited Members

- Public Types inherited from BellmanFord< Digraph, LengthMap, SetPredMapTraits< T > >
typedef SetPredMapTraits< T >
::Digraph 
Digraph
 The type of the underlying digraph.
 
typedef SetPredMapTraits< T >
::LengthMap::Value 
Value
 The type of the arc lengths.
 
typedef SetPredMapTraits< T >
::LengthMap 
LengthMap
 The type of the map that stores the arc lengths.
 
typedef SetPredMapTraits< T >
::PredMap 
PredMap
 The type of the map that stores the last arcs of the shortest paths.
 
typedef SetPredMapTraits< T >
::DistMap 
DistMap
 The type of the map that stores the distances of the nodes.
 
typedef PredMapPath< Digraph,
PredMap
Path
 The type of the paths.
 
typedef SetPredMapTraits< T >
::OperationTraits 
OperationTraits
 The operation traits class of the algorithm.
 
typedef SetPredMapTraits< T > Traits
 The traits class of the algorithm.
 
- Public Member Functions inherited from BellmanFord< Digraph, LengthMap, SetPredMapTraits< T > >
 BellmanFord (const Digraph &g, const LengthMap &length)
 Constructor.
 
 ~BellmanFord ()
 Destructor.
 
BellmanFordlengthMap (const LengthMap &map)
 Sets the length map.
 
BellmanFordpredMap (PredMap &map)
 Sets the map that stores the predecessor arcs.
 
BellmanForddistMap (DistMap &map)
 Sets the map that stores the distances of the nodes.
 
const PredMappredMap () const
 Returns a const reference to the node map that stores the predecessor arcs.
 
const DistMapdistMap () const
 Returns a const reference to the node map that stores the distances of the nodes.
 
Path path (Node t) const
 The shortest path to the given node.
 
Value dist (Node v) const
 The distance of the given node from the root(s).
 
Arc predArc (Node v) const
 Returns the 'previous arc' of the shortest path tree for the given node.
 
Node predNode (Node v) const
 Returns the 'previous node' of the shortest path tree for the given node.
 
bool reached (Node v) const
 Checks if a node is reached from the root(s).
 
lemon::Path< DigraphnegativeCycle () const
 Gives back a negative cycle.
 
void init (const Value value=OperationTraits::infinity())
 Initializes the internal data structures.
 
void addSource (Node source, Value dst=OperationTraits::zero())
 Adds a new source node.
 
bool processNextRound ()
 Executes one round from the Bellman-Ford algorithm.
 
bool processNextWeakRound ()
 Executes one weak round from the Bellman-Ford algorithm.
 
void start ()
 Executes the algorithm.
 
bool checkedStart ()
 Executes the algorithm and checks the negative cycles.
 
void limitedStart (int num)
 Executes the algorithm with arc number limit.
 
void run (Node s)
 Runs the algorithm from the given root node.
 
void run (Node s, int num)
 Runs the algorithm from the given root node with arc number limit.