BaseGraphComponent Class Reference
Detailed Description
This class provides the minimal set of features needed for a graph structure. All graph
concepts have to be conform to this base graph. It just provides types for nodes and edges and functions to get the source and the target of the edges.
#include <lemon/concepts/graph_components.h>
List of all members.
Member Typedef Documentation
This class represents the Nodes of the graph.
This class represents the Edges of the graph.
Member Function Documentation
Node target |
( |
const Edge & |
|
) |
const [inline] |
Gives back the target node of an edge.
Node source |
( |
const Edge & |
|
) |
const [inline] |
Gives back the source node of an edge.
Node oppositeNode |
( |
const Node & |
, |
|
|
const Edge & |
| |
|
) |
| | const [inline] |
Gives back the opposite node on the given edge.