Uses of Class
org.jgrapht.alg.util.Triple
-
Packages that use 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
Methods in org.jgrapht.alg.interfaces that return types with arguments of type Triple Modifier and Type Method Description default List<Triple<V,V,Double>>
LinkPredictionAlgorithm. predict(List<Pair<V,V>> queries)
Predict an edge between a set of vertex pairs. -
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, 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)
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 streamSparseIntUndirectedWeightedGraph(int numVertices, List<Triple<Integer,Integer,Double>> edges)
Create a new graph from an edge list
-