Uses of Interface
com.jgalgo.graph.EdgeSet
-
Packages that use EdgeSet Package Description com.jgalgo.adapt.guava Adapters from Guava to JGalgo, and from JGalgo to Guava.com.jgalgo.adapt.jgrapht Adapters from JGraphT to JGalgo, and from JGalgo to JGraphT.com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of EdgeSet in com.jgalgo.adapt.guava
Methods in com.jgalgo.adapt.guava that return EdgeSet Modifier and Type Method Description EdgeSet<V,E>
GuavaNetworkWrapper. getEdges(V source, V target)
EdgeSet<V,E>
GuavaNetworkWrapper. inEdges(V target)
EdgeSet<V,E>
GuavaNetworkWrapper. outEdges(V source)
Methods in com.jgalgo.adapt.guava with parameters of type EdgeSet Modifier and Type Method Description void
GuavaNetworkWrapper. addEdges(EdgeSet<? extends V,? extends E> edges)
-
Uses of EdgeSet in com.jgalgo.adapt.jgrapht
Methods in com.jgalgo.adapt.jgrapht that return EdgeSet Modifier and Type Method Description EdgeSet<V,E>
JGraphTWrapper. getEdges(V source, V target)
EdgeSet<V,E>
JGraphTWrapper. inEdges(V target)
EdgeSet<V,E>
JGraphTWrapper. outEdges(V source)
Methods in com.jgalgo.adapt.jgrapht with parameters of type EdgeSet Modifier and Type Method Description void
JGraphTWrapper. addEdges(EdgeSet<? extends V,? extends E> edges)
-
Uses of EdgeSet in com.jgalgo.graph
Subinterfaces of EdgeSet in com.jgalgo.graph Modifier and Type Interface Description interface
IEdgeSet
Set of int graph edges.Methods in com.jgalgo.graph that return EdgeSet Modifier and Type Method Description static <V,E>
EdgeSet<V,E>EdgeSet. allOf(Graph<V,E> g)
Create an edge set object of all the edges in a graph.EdgeSet<V,E>
Graph. getEdges(V source, V target)
Get the edges whose source issource
and target istarget
.static <V,E>
EdgeSet<V,E>IndexIdMaps. indexToIdEdgeSet(IEdgeSet indexSet, Graph<V,E> g)
Create an edge set of IDs from an edge set of indices.EdgeSet<V,E>
Graph. inEdges(V target)
Get the edges whose target istarget
.static <V,E>
EdgeSet<V,E>EdgeSet. of(Set<E> edges, Graph<V,E> g)
Create an edge set object from a plain set of edges.EdgeSet<V,E>
Graph. outEdges(V source)
Get the edges whose source issource
.Methods in com.jgalgo.graph with parameters of type EdgeSet Modifier and Type Method Description void
Graph. addEdges(EdgeSet<? extends V,? extends E> edges)
Add multiple edges to the graph.void
GraphBuilder. addEdges(EdgeSet<? extends V,? extends E> edges)
Add multiple edges to the built graph.void
IndexGraph. addEdges(EdgeSet<? extends Integer,? extends Integer> edges)
Add multiple edges to the graph.void
IndexGraphBuilder. addEdges(EdgeSet<? extends Integer,? extends Integer> edges)
Add multiple edges to the built graph.void
IntGraph. addEdges(EdgeSet<? extends Integer,? extends Integer> edges)
Add multiple edges to the graph.void
IntGraphBuilder. addEdges(EdgeSet<? extends Integer,? extends Integer> edges)
Add multiple edges to the built graph.
-