Uses of Class
org.jhotdraw8.graph.path.backlink.VertexBackLink
Packages that use VertexBackLink
-
Uses of VertexBackLink in org.jhotdraw8.graph.path.algo
Methods in org.jhotdraw8.graph.path.algo that return VertexBackLinkModifier and TypeMethodDescriptionprotected @Nullable VertexBackLink<V> AnyVertexPathSearchAlgo.search(@NonNull Iterable<V> startVertices, @NonNull Predicate<V> goalPredicate, @NonNull Function<V, Iterable<V>> nextVerticesFunction, @NonNull AddToSet<V> visited, int maxDepth) Search engine method.UniqueOnAcyclicGraphVertexPathSearchAlgo.search(@NonNull Iterable<V> startVertices, @NonNull Predicate<V> goalPredicate, @NonNull Function<V, Iterable<V>> nextVerticesFunction, int maxDepth) Search engine method. -
Uses of VertexBackLink in org.jhotdraw8.graph.path.backlink
Methods in org.jhotdraw8.graph.path.backlink with parameters of type VertexBackLinkModifier and TypeMethodDescriptionstatic <VV,CC extends Number & Comparable<CC>>
@Nullable VertexBackLinkWithCost<VV, CC> VertexBackLink.toVertexBackLinkWithCost(@Nullable VertexBackLink<VV> node, @NonNull CC zero, @NonNull BiFunction<VV, VV, CC> costFunction, @NonNull BiFunction<CC, CC, CC> sumFunction) Converts anVertexBackLinktoVertexBackLinkWithCost.Constructors in org.jhotdraw8.graph.path.backlink with parameters of type VertexBackLinkModifierConstructorDescriptionVertexBackLink(@NonNull V vertex, @Nullable VertexBackLink<V> parent) Creates a new instance.