Uses of Class
org.jhotdraw8.graph.SimpleMutableDirectedGraph
Packages that use SimpleMutableDirectedGraph
-
Uses of SimpleMutableDirectedGraph in org.jhotdraw8.graph.algo
Methods in org.jhotdraw8.graph.algo that return SimpleMutableDirectedGraphModifier and TypeMethodDescription<V,A, C extends Number & Comparable<C>, P extends OrderedPair<V, V>>
@NonNull SimpleMutableDirectedGraph<V, P> MinimumSpanningTreeAlgo.findMinimumSpanningTreeGraph(@NonNull Collection<V> vertices, @NonNull List<P> orderedArrows, @Nullable List<P> includedArrows, List<P> rejectedArrows) Given a set of vertices and a list of arrows ordered by cost, returns a builder with the minimum spanning tree.<V,A, C extends Number & Comparable<C>>
@NonNull SimpleMutableDirectedGraph<V, A> MinimumSpanningTreeAlgo.findMinimumSpanningTreeGraph(@NonNull DirectedGraph<V, A> graph, @NonNull Function<A, C> costf) Given an undirected graph and a cost function, returns a builder with the minimum spanning tree.<V,A, C extends Number & Comparable<C>>
@NonNull SimpleMutableDirectedGraph<V, A> MinimumSpanningTreeAlgo.findMinimumSpanningTreeGraph(@NonNull DirectedGraph<V, A> graph, @NonNull Function3<V, V, A, C> costf) Given an undirected graph and a cost function, returns a builder with the minimum spanning tree.