_Graph | Graph type. | |
_LengthMap | Type of length map. |
#include <lemon/dag_shortest_path.h>
Public Types | |
typedef _Graph | Graph |
The graph type the algorithm runs on. | |
typedef _LengthMap | LengthMap |
The type of the map that stores the edge lengths. | |
typedef _LengthMap::Value | Value |
The value type of the length map. | |
typedef DagShortestPathDefaultOperationTraits < Value > | OperationTraits |
Operation traits for dag shortest path algorithm. | |
typedef NullMap< typename _Graph::Node, typename _Graph::Edge > | PredMap |
The type of the map that stores the last edges of the shortest paths. | |
typedef NullMap< typename Graph::Node, Value > | DistMap |
The type of the map that stores the dists of the nodes. | |
Static Public Member Functions | |
static PredMap * | createPredMap (const _Graph &) |
Instantiates a PredMap. | |
static DistMap * | createDistMap (const _Graph &) |
Instantiates a DistMap. |
typedef _LengthMap LengthMap |
The type of the map that stores the edge lengths. It must meet the ReadMap concept.
It defines the infinity type on the given Value type and the used operation.
The type of the map that stores the last edges of the shortest paths. It must meet the WriteMap concept.
The type of the map that stores the dists of the nodes. It must meet the WriteMap concept.
static PredMap* createPredMap | ( | const _Graph & | ) | [inline, static] |
This function instantiates a PredMap.
static DistMap* createDistMap | ( | const _Graph & | ) | [inline, static] |
This function instantiates a DistMap.