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 IEdgeSetIEdgeSet. allOf(IntGraph g)Create an edge set object of all the edges in a graph.IEdgeSetIntGraph. getEdges(int source, int target)Get the edges whose source issourceand target istarget.default IEdgeSetIntGraph. getEdges(Integer source, Integer target)Deprecated.Please useIntGraph.getEdges(int, int)instead to avoid un/boxing.static IEdgeSetIndexIdMaps. indexToIdEdgeSet(IEdgeSet indexSet, IntGraph g)Create an edge set of IDs from an edge set of indices in anIntGraph.IEdgeSetIntGraph. inEdges(int target)Get the edges whose target istarget.default IEdgeSetIntGraph. inEdges(Integer target)Deprecated.Please useIntGraph.inEdges(int)instead to avoid un/boxing.static IEdgeSetIEdgeSet. of(IntSet edges, IntGraph g)Create an edge set object from a plain set of edges.IEdgeSetIntGraph. outEdges(int source)Get the edges whose source issource.default IEdgeSetIntGraph. 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 IntSetIndexGraph. addEdgesReassignIds(IEdgeSet edges)Add multiple edges to the graph and re-assign ids for them.IntSetIndexGraphBuilder. 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.
-