Uses of Class
org.jgrapht.alg.util.Triple
-
Packages that use Triple Package Description org.jgrapht.alg.util Utilities used by JGraphT algorithms.org.jgrapht.opt.graph.sparse A specialized graph implementation using a sparse matrix representations. -
-
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, List<Triple<Integer,Integer,Double>> edges)
Create a new graph from an edge list.SparseIntUndirectedWeightedGraph(int numVertices, List<Triple<Integer,Integer,Double>> edges)
Create a new graph from an edge list
-