| Values | |
traversalVisitors | Source Codeshared traversalVisitors traversalVisitorsThis object contains some useful visitors. Note that wrapping them into a parent object is only necessary to avoid a compiler backend type inference error. By: ThorstenSeitz |
| Functions | |
mapDistances | Source Codeshared DistanceMap<Vertex,Weight> mapDistances<Vertex, E, Graph, Weight>(Graph graph, Vertex origin, Weights<Weight,Vertex,E> weights)Map distances of all vertices of the given graph measured from given origin according to By: ThorstenSeitz |
mapHops | Source Codeshared HopDistanceMap<Vertex> mapHops<Vertex, Graph>(Graph graph, Vertex origin)Map hop distance of all vertices of the given graph measured from given origin. Implementation note: uses a breadth first search traversal. By: ThorstenSeitz |
| Interfaces | |
DistanceMap | Source Codeshared DistanceMap<Vertex,Distance>Distance map giving the distance of vertices measured from a given origin according to some measure. |
EdgeVisitor | Source Codeshared EdgeVisitor<V,E>An |
HopDistanceMap | Source Codeshared HopDistanceMap<Vertex>A distance map for hops. |
TraversalVisitor | Source Codeshared TraversalVisitor<V>A |
VertexVisitor | Source Codeshared VertexVisitor<V>A |
| Classes | |
DistanceMapper | Source Codeshared abstract DistanceMapper<Vertex,Distance,DistanceMonoid>A |
EdgeDistanceMapper | Source Codeshared EdgeDistanceMapper<Vertex,E,Distance>An edge-visiting distance mapper. |
HopDistanceMapper | Source Codeshared HopDistanceMapper<Vertex>A vertex-visiting distance mapper which measures distance in hops, i.e. number of edges. |
Hops | Source Codeshared HopsA monoid for counting hops. |
VertexDistanceMapper | Source Codeshared VertexDistanceMapper<Vertex,Weight>A vertex-visiting distance mapper. |
traversalVisitors | Source Codeshared traversalVisitorsThis object contains some useful visitors. Note that wrapping them into a parent object is only necessary to avoid a compiler backend type inference error. |