Uses of Enum
org.jgrapht.opt.graph.sparse.IncomingEdgesSupport
Package
Description
Specialized graph implementations using sparse matrix representations.
-
Uses of IncomingEdgesSupport in org.jgrapht.opt.graph.sparse
Modifier and TypeMethodDescriptionstatic IncomingEdgesSupport
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.ModifierConstructorDescriptionSparseIntDirectedGraph
(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.