| Interface | Description |
|---|---|
| AStarAdmissibleHeuristic<V> |
Interface for an admissible heuristic used in A* search.
|
| EulerianCycleAlgorithm<V,E> |
Computes an Eulerian cycle of an Eulerian graph.
|
| KShortestPathAlgorithm<V,E> |
An algorithm which computes k-shortest paths between vertices.
|
| MatchingAlgorithm<V,E> |
Allows to derive a matching of
a given graph.
|
| MatchingAlgorithm.Matching<E> |
A graph matching.
|
| MaximumFlowAlgorithm<V,E> |
Allows to derive maximum-flow
from the supplied flow network
|
| MaximumFlowAlgorithm.MaximumFlow<E> |
A maximum flow
|
| MinimumSpanningTree<V,E> | Deprecated
In favor of
SpanningTreeAlgorithm. |
| MinimumSTCutAlgorithm<V,E> |
Given a weighted graph G(V,E) (directed or undirected).
|
| MinimumVertexCoverAlgorithm<V,E> |
Computes a vertex cover in an undirected graph.
|
| MinimumVertexCoverAlgorithm.VertexCover<V> |
A vertex cover
|
| MinimumWeightedVertexCoverAlgorithm<V,E> |
Computes a weighted vertex cover in an undirected graph.
|
| ShortestPathAlgorithm<V,E> |
An algorithm which computes shortest paths between vertices.
|
| ShortestPathAlgorithm.SingleSourcePaths<V,E> |
A set of paths starting from a single source vertex.
|
| SpannerAlgorithm<E> |
An algorithm which computes a
graph spanner of a
given graph.
|
| SpannerAlgorithm.Spanner<E> |
A graph spanner.
|
| SpanningTreeAlgorithm<E> |
An algorithm which computes a spanning
tree of a given connected graph.
|
| SpanningTreeAlgorithm.SpanningTree<E> |
A spanning tree.
|
| StrongConnectivityAlgorithm<V,E> |
An interface to the StrongConnectivityInspector algorithm classes.
|
| VertexScoringAlgorithm<V,D> |
An interface for all algorithms which assign scores to vertices of a graph.
|
| WeightedMatchingAlgorithm<V,E> | Deprecated
Use
MatchingAlgorithm directly |
| Class | Description |
|---|---|
| MatchingAlgorithm.MatchingImpl<E> |
A default implementation of the matching interface.
|
| MaximumFlowAlgorithm.MaximumFlowImpl<E> |
Default implementation of the maximum flow
|
| MinimumVertexCoverAlgorithm.VertexCoverImpl<V> |
Default implementation of a vertex cover
|
| SpannerAlgorithm.SpannerImpl<E> |
Default implementation of the spanner interface.
|
| SpanningTreeAlgorithm.SpanningTreeImpl<E> |
Default implementation of the spanning tree interface.
|
Copyright © 2017. All rights reserved.