Uses of Interface
org.jgrapht.graph.EdgeSetFactory
Packages that use EdgeSetFactory
Package
Description
Implementations of various graphs.
Implementations of specifics for various graph types.
-
Uses of EdgeSetFactory in org.jgrapht.graph
Methods in org.jgrapht.graph that return EdgeSetFactoryModifier and TypeMethodDescriptiondefault EdgeSetFactory<V,
E> GraphSpecificsStrategy.getEdgeSetFactory()
Get an edge set factory. -
Uses of EdgeSetFactory in org.jgrapht.graph.specifics
Classes in org.jgrapht.graph.specifics that implement EdgeSetFactoryModifier and TypeClassDescriptionclass
An edge set factory which createsArrayUnenforcedSet
of size 1, suitable for small degree vertices.Fields in org.jgrapht.graph.specifics declared as EdgeSetFactoryModifier and TypeFieldDescriptionprotected EdgeSetFactory<V,
E> DirectedSpecifics.edgeSetFactory
protected EdgeSetFactory<V,
E> UndirectedSpecifics.edgeSetFactory
Constructors in org.jgrapht.graph.specifics with parameters of type EdgeSetFactoryModifierConstructorDescriptionDirectedSpecifics
(Graph<V, E> graph, Map<V, DirectedEdgeContainer<V, E>> vertexMap, EdgeSetFactory<V, E> edgeSetFactory) Construct a new directed specifics.FastLookupDirectedSpecifics
(Graph<V, E> graph, Map<V, DirectedEdgeContainer<V, E>> vertexMap, Map<Pair<V, V>, Set<E>> touchingVerticesToEdgeMap, EdgeSetFactory<V, E> edgeSetFactory) Construct a new fast lookup directed specifics.FastLookupUndirectedSpecifics
(Graph<V, E> graph, Map<V, UndirectedEdgeContainer<V, E>> vertexMap, Map<Pair<V, V>, Set<E>> touchingVerticesToEdgeMap, EdgeSetFactory<V, E> edgeSetFactory) Construct a new fast lookup undirected specifics.UndirectedSpecifics
(Graph<V, E> graph, Map<V, UndirectedEdgeContainer<V, E>> vertexMap, EdgeSetFactory<V, E> edgeSetFactory) Construct a new undirected specifics.