Uses of Enum
org.jgrapht.opt.graph.sparse.IncomingEdgesSupport
Packages that use IncomingEdgesSupport
Package
Description
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 IncomingEdgesSupportModifier and TypeMethodDescriptionstatic IncomingEdgesSupportReturns 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 IncomingEdgesSupportModifierConstructorDescriptionSparseIntDirectedGraph(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.