Uses of Interface
org.jgrapht.graph.EdgeSetFactory
Package
Description
Implementations of various graphs.
Implementations of specifics for various graph types.
-
Uses of EdgeSetFactory in org.jgrapht.graph
Modifier and TypeMethodDescriptiondefault EdgeSetFactory<V,
E> GraphSpecificsStrategy.getEdgeSetFactory()
Get an edge set factory. -
Uses of EdgeSetFactory in org.jgrapht.graph.specifics
Modifier and TypeClassDescriptionclass
An edge set factory which createsArrayUnenforcedSet
of size 1, suitable for small degree vertices.Modifier and TypeFieldDescriptionprotected EdgeSetFactory<V,
E> DirectedSpecifics.edgeSetFactory
protected EdgeSetFactory<V,
E> UndirectedSpecifics.edgeSetFactory
ModifierConstructorDescriptionDirectedSpecifics
(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.