Uses of Interface
org.jgrapht.graph.DirectedAcyclicGraph.TopoOrderMap
-
Packages that use 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 class
DirectedAcyclicGraph.TopoVertexBiMap<V>
A dual map implementation of the topological order map.protected class
DirectedAcyclicGraph.TopoVertexMap
An 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.Fields in org.jgrapht.graph declared as DirectedAcyclicGraph.TopoOrderMap Modifier and Type Field Description private DirectedAcyclicGraph.TopoOrderMap<V>
DirectedAcyclicGraph. topoOrderMap
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.DirectedAcyclicGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, DirectedAcyclicGraph.VisitedStrategyFactory visitedStrategyFactory, DirectedAcyclicGraph.TopoOrderMap<V> topoOrderMap, boolean weighted, boolean allowMultipleEdges, GraphSpecificsStrategy<V,E> graphSpecificsStrategy)
Construct a directed acyclic graph.
-