Uses of Interface
com.jgalgo.graph.IEdgeSet
-
Packages that use IEdgeSet Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of IEdgeSet in com.jgalgo.graph
Methods in com.jgalgo.graph that return IEdgeSet Modifier and Type Method Description static IEdgeSet
IEdgeSet. allOf(IntGraph g)
Create an edge set object of all the edges in a graph.IEdgeSet
IntGraph. getEdges(int source, int target)
Get the edges whose source issource
and target istarget
.default IEdgeSet
IntGraph. getEdges(Integer source, Integer target)
Deprecated.Please useIntGraph.getEdges(int, int)
instead to avoid un/boxing.static IEdgeSet
IndexIdMaps. indexToIdEdgeSet(IEdgeSet indexSet, IntGraph g)
Create an edge set of IDs from an edge set of indices in anIntGraph
.IEdgeSet
IntGraph. inEdges(int target)
Get the edges whose target istarget
.default IEdgeSet
IntGraph. inEdges(Integer target)
Deprecated.Please useIntGraph.inEdges(int)
instead to avoid un/boxing.static IEdgeSet
IEdgeSet. of(IntSet edges, IntGraph g)
Create an edge set object from a plain set of edges.IEdgeSet
IntGraph. outEdges(int source)
Get the edges whose source issource
.default IEdgeSet
IntGraph. outEdges(Integer source)
Deprecated.Please useIntGraph.outEdges(int)
instead to avoid un/boxing.Methods in com.jgalgo.graph with parameters of type IEdgeSet Modifier and Type Method Description IntSet
IndexGraph. addEdgesReassignIds(IEdgeSet edges)
Add multiple edges to the graph and re-assign ids for them.IntSet
IndexGraphBuilder. addEdgesReassignIds(IEdgeSet edges)
Add multiple edges to the built graph and re-assign ids for them.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.static IEdgeSet
IndexIdMaps. indexToIdEdgeSet(IEdgeSet indexSet, IntGraph g)
Create an edge set of IDs from an edge set of indices in anIntGraph
.
-