Uses of Interface
com.jgalgo.graph.IEdgeSet
Packages that use IEdgeSet
Package
Description
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 IEdgeSetModifier and TypeMethodDescriptionstatic IEdgeSetCreate an edge set object of all the edges in a graph.IntGraph.getEdges(int source, int target) Get the edges whose source issourceand target istarget.default IEdgeSetDeprecated.static IEdgeSetIndexIdMaps.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 IEdgeSetDeprecated.Please useIntGraph.inEdges(int)instead to avoid un/boxing.static IEdgeSetCreate an edge set object from a plain set of edges.IntGraph.outEdges(int source) Get the edges whose source issource.default IEdgeSetDeprecated.Please useIntGraph.outEdges(int)instead to avoid un/boxing.Methods in com.jgalgo.graph with parameters of type IEdgeSetModifier 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 IEdgeSetIndexIdMaps.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.