Uses of Class
org.jgrapht.alg.util.Triple
Package
Description
Algorithm related interfaces.
Utilities used by JGraphT algorithms.
Specialized graph implementations using sparse matrix representations.
-
Uses of Triple in org.jgrapht.alg.interfaces
-
Uses of Triple in org.jgrapht.alg.util
-
Uses of Triple in org.jgrapht.opt.graph.sparse
ModifierConstructorDescriptionSparseIntDirectedWeightedGraph
(int numVertices, int numEdges, Supplier<Stream<Triple<Integer, Integer, Double>>> edges, IncomingEdgesSupport incomingEdgeSupport) Create a new graph from an edge stream.Create a new graph from an edge list.SparseIntDirectedWeightedGraph
(int numVertices, List<Triple<Integer, Integer, Double>> edges, IncomingEdgesSupport incomingEdgeSupport) Create a new graph from an edge list.SparseIntUndirectedWeightedGraph
(int numVertices, int numEdges, Supplier<Stream<Triple<Integer, Integer, Double>>> edges) Create a new graph from an edge streamCreate a new graph from an edge list