Uses of Interface
com.jgalgo.graph.EdgeSet
-
Packages that use EdgeSet Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of EdgeSet in com.jgalgo.graph
Subinterfaces of EdgeSet in com.jgalgo.graph Modifier and Type Interface Description interfaceIEdgeSetSet of int graph edges.Methods in com.jgalgo.graph that return EdgeSet Modifier and Type Method Description EdgeSet<V,E>Graph. getEdges(V source, V target)Get the edges whose source issourceand target istarget.default EdgeSet<Integer,Integer>IntGraph. getEdges(Integer source, Integer target)Deprecated.EdgeSet<V,E>Graph. inEdges(V target)Get the edges whose target istarget.default EdgeSet<Integer,Integer>IntGraph. inEdges(Integer target)Deprecated.EdgeSet<V,E>Graph. outEdges(V source)Get the edges whose source issource.default EdgeSet<Integer,Integer>IntGraph. outEdges(Integer source)Deprecated.
-