Uses of Class
org.jgrapht.graph.SimpleDirectedGraph
-
Packages that use SimpleDirectedGraph Package Description org.jgrapht.alg Algorithms provided with JGraphT.org.jgrapht.experimental.dag Experimental package with directed acyclic graphs.org.jgrapht.graph Implementations of various graphs. -
-
Uses of SimpleDirectedGraph in org.jgrapht.alg
Methods in org.jgrapht.alg with parameters of type SimpleDirectedGraph Modifier and Type Method Description <V,E>
voidTransitiveClosure. closeSimpleDirectedGraph(SimpleDirectedGraph<V,E> graph)Computes the transitive closure of the given graph. -
Uses of SimpleDirectedGraph in org.jgrapht.experimental.dag
Subclasses of SimpleDirectedGraph in org.jgrapht.experimental.dag Modifier and Type Class Description classDirectedAcyclicGraph<V,E>DirectedAcyclicGraph implements a DAG that can be modified (vertices & edges added and removed), is guaranteed to remain acyclic, and provides fast topological order iteration. -
Uses of SimpleDirectedGraph in org.jgrapht.graph
Subclasses of SimpleDirectedGraph in org.jgrapht.graph Modifier and Type Class Description classSimpleDirectedWeightedGraph<V,E>A simple directed weighted graph.Methods in org.jgrapht.graph that return types with arguments of type SimpleDirectedGraph Modifier and Type Method Description static <V,E>
DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?>SimpleDirectedGraph. builder(java.lang.Class<? extends E> edgeClass)Create a builder for this kind of graph.static <V,E>
DirectedGraphBuilderBase<V,E,? extends SimpleDirectedGraph<V,E>,?>SimpleDirectedGraph. builder(EdgeFactory<V,E> ef)Create a builder for this kind of graph.
-