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