Uses of Interface
org.jgrapht.graph.DirectedAcyclicGraph.TopoOrderMap
| Package | Description |
|---|---|
| org.jgrapht.graph |
Implementations of various graphs.
|
-
Uses of DirectedAcyclicGraph.TopoOrderMap in org.jgrapht.graph
Classes in org.jgrapht.graph that implement DirectedAcyclicGraph.TopoOrderMap Modifier and Type Class Description protected static classDirectedAcyclicGraph.TopoVertexBiMap<V>A dual map implementation of the topological order map.protected classDirectedAcyclicGraph.TopoVertexMapAn implementation of the topological order map which for performance and flexibility uses an ArrayList for topological index to vertex mapping, and a HashMap for vertex to topological index mapping.Constructors in org.jgrapht.graph with parameters of type DirectedAcyclicGraph.TopoOrderMap Constructor Description DirectedAcyclicGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, DirectedAcyclicGraph.VisitedStrategyFactory visitedStrategyFactory, DirectedAcyclicGraph.TopoOrderMap<V> topoOrderMap, boolean weighted)Construct a directed acyclic graph.DirectedAcyclicGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, DirectedAcyclicGraph.VisitedStrategyFactory visitedStrategyFactory, DirectedAcyclicGraph.TopoOrderMap<V> topoOrderMap, boolean weighted, boolean allowMultipleEdges)Construct a directed acyclic graph.