Uses of Class
org.jgrapht.opt.graph.sparse.IncomingEdgesSupport
-
Packages that use IncomingEdgesSupport Package Description org.jgrapht.opt.graph.sparse Specialized graph implementations using sparse matrix representations. -
-
Uses of IncomingEdgesSupport in org.jgrapht.opt.graph.sparse
Methods in org.jgrapht.opt.graph.sparse that return IncomingEdgesSupport Modifier and Type Method Description static IncomingEdgesSupport
IncomingEdgesSupport. valueOf(String name)
Returns the enum constant of this type with the specified name.static IncomingEdgesSupport[]
IncomingEdgesSupport. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.jgrapht.opt.graph.sparse with parameters of type IncomingEdgesSupport Constructor Description SparseIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer,Integer>>> edges, IncomingEdgesSupport incomingEdgesSupport)
Create a new graph from an edge stream.SparseIntDirectedGraph(int numVertices, List<Pair<Integer,Integer>> edges, IncomingEdgesSupport incomingEdgesSupport)
Create a new graph from an edge list.SparseIntDirectedWeightedGraph(int numVertices, int numEdges, Supplier<Stream<Triple<Integer,Integer,Double>>> edges, IncomingEdgesSupport incomingEdgeSupport)
Create a new graph from an edge stream.SparseIntDirectedWeightedGraph(int numVertices, List<Triple<Integer,Integer,Double>> edges, IncomingEdgesSupport incomingEdgeSupport)
Create a new graph from an edge list.
-