Uses of Class
org.jgrapht.alg.util.Triple
Package | Description |
---|---|
org.jgrapht.alg.interfaces |
Algorithm related interfaces.
|
org.jgrapht.alg.util |
Utilities used by JGraphT algorithms.
|
org.jgrapht.opt.graph.sparse |
Specialized graph implementations using sparse matrix representations.
|
-
Uses of Triple in org.jgrapht.alg.interfaces
-
Uses of Triple in org.jgrapht.alg.util
Methods in org.jgrapht.alg.util that return Triple Modifier and Type Method Description static <A, B, C> Triple<A,B,C>
Triple. of(A a, B b, C c)
Create a new triple. -
Uses of Triple in org.jgrapht.opt.graph.sparse
Constructor parameters in org.jgrapht.opt.graph.sparse with type arguments of type Triple Constructor Description SparseIntDirectedWeightedGraph(int numVertices, int numEdges, java.util.function.Supplier<java.util.stream.Stream<Triple<java.lang.Integer,java.lang.Integer,java.lang.Double>>> edges, IncomingEdgesSupport incomingEdgeSupport)
Create a new graph from an edge stream.SparseIntDirectedWeightedGraph(int numVertices, java.util.List<Triple<java.lang.Integer,java.lang.Integer,java.lang.Double>> edges)
Create a new graph from an edge list.SparseIntDirectedWeightedGraph(int numVertices, java.util.List<Triple<java.lang.Integer,java.lang.Integer,java.lang.Double>> edges, IncomingEdgesSupport incomingEdgeSupport)
Create a new graph from an edge list.SparseIntUndirectedWeightedGraph(int numVertices, int numEdges, java.util.function.Supplier<java.util.stream.Stream<Triple<java.lang.Integer,java.lang.Integer,java.lang.Double>>> edges)
Create a new graph from an edge streamSparseIntUndirectedWeightedGraph(int numVertices, java.util.List<Triple<java.lang.Integer,java.lang.Integer,java.lang.Double>> edges)
Create a new graph from an edge list