Uses of Class
org.jgrapht.graph.DirectedAcyclicGraph
-
Packages that use DirectedAcyclicGraph Package Description org.jgrapht.alg Algorithms provided with JGraphT.org.jgrapht.graph Implementations of various graphs. -
-
Uses of DirectedAcyclicGraph in org.jgrapht.alg
Methods in org.jgrapht.alg with parameters of type DirectedAcyclicGraph Modifier and Type Method Description <V,E>
voidTransitiveClosure. closeDirectedAcyclicGraph(DirectedAcyclicGraph<V,E> graph)
Computes the transitive closure of a directed acyclic graph in $O(nm)$ -
Uses of DirectedAcyclicGraph in org.jgrapht.graph
Methods in org.jgrapht.graph that return types with arguments of type DirectedAcyclicGraph Modifier and Type Method Description static <V,E>
GraphBuilder<V,E,? extends DirectedAcyclicGraph<V,E>>DirectedAcyclicGraph. createBuilder(java.lang.Class<? extends E> edgeClass)
Create a builder for this kind of graph.static <V,E>
GraphBuilder<V,E,? extends DirectedAcyclicGraph<V,E>>DirectedAcyclicGraph. createBuilder(java.util.function.Supplier<E> edgeSupplier)
Create a builder for this kind of graph.
-