Uses of Interface
org.jgrapht.graph.GraphSpecificsStrategy
-
Packages that use GraphSpecificsStrategy Package Description org.jgrapht.graph Implementations of various graphs.org.jgrapht.opt.graph.fastutil Specialized graph implementations using the FastUtil library -
-
Uses of GraphSpecificsStrategy in org.jgrapht.graph
Classes in org.jgrapht.graph that implement GraphSpecificsStrategy Modifier and Type Class Description class
DefaultGraphSpecificsStrategy<V,E>
A default lookup specifics strategy implementation.class
FastLookupGraphSpecificsStrategy<V,E>
The fast lookup specifics strategy implementation.Constructors in org.jgrapht.graph with parameters of type GraphSpecificsStrategy Constructor Description AbstractBaseGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type, GraphSpecificsStrategy<V,E> graphSpecificsStrategy)
Construct a new graph.DirectedAcyclicGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, boolean weighted, boolean allowMultipleEdges, GraphSpecificsStrategy<V,E> graphSpecificsStrategy)
Construct a directed acyclic graph.DirectedAcyclicGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, DirectedAcyclicGraph.VisitedStrategyFactory visitedStrategyFactory, DirectedAcyclicGraph.TopoOrderMap<V> topoOrderMap, boolean weighted, boolean allowMultipleEdges, GraphSpecificsStrategy<V,E> graphSpecificsStrategy)
Construct a directed acyclic graph. -
Uses of GraphSpecificsStrategy in org.jgrapht.opt.graph.fastutil
Classes in org.jgrapht.opt.graph.fastutil that implement GraphSpecificsStrategy Modifier and Type Class Description class
FastutilFastLookupGSS<V,E>
The fast lookup specifics strategy implementation using fastutil maps for storage..class
FastutilFastLookupIntVertexGSS<E>
A specifics strategy implementation using fastutil maps for storage specialized for integer vertices.class
FastutilGSS<V,E>
A specifics strategy implementation using fastutil maps for storage.class
FastutilIntVertexGSS<E>
A specifics strategy implementation using fastutil maps for storage specialized for integer vertices.
-