Uses of Class
org.jhotdraw8.graph.path.backlink.ArcBackLink
Packages that use ArcBackLink
-
Uses of ArcBackLink in org.jhotdraw8.graph.path.algo
Methods in org.jhotdraw8.graph.path.algo that return ArcBackLinkModifier and TypeMethodDescriptionAnyArcPathSearchAlgo.search(@NonNull Iterable<V> startVertices, @NonNull Predicate<V> goalPredicate, @NonNull Function<V, Iterable<Arc<V, A>>> nextArcsFunction, @NonNull AddToSet<V> visited, int maxDepth) Search engine method.UniqueOnAcyclicGraphArcPathSearchAlgo.search(@NonNull Iterable<V> startVertices, @NonNull Predicate<V> goalPredicate, @NonNull Function<V, Iterable<Arc<V, A>>> nextArcsFunction, int maxDepth) Search engine method. -
Uses of ArcBackLink in org.jhotdraw8.graph.path.backlink
Methods in org.jhotdraw8.graph.path.backlink with parameters of type ArcBackLinkModifier and TypeMethodDescriptionstatic <VV,AA, CC extends Number & Comparable<CC>>
@Nullable ArcBackLinkWithCost<VV, AA, CC> ArcBackLink.toArcBackLinkWithCost(@Nullable ArcBackLink<VV, AA> node, @NonNull CC zero, @NonNull Function3<VV, VV, AA, CC> costFunction, @NonNull BiFunction<CC, CC, CC> sumFunction) Converts anArcBackLinktoArcBackLinkWithCost.Constructors in org.jhotdraw8.graph.path.backlink with parameters of type ArcBackLinkModifierConstructorDescriptionArcBackLink(@NonNull V vertex, @Nullable A arrow, @Nullable ArcBackLink<V, A> parent) Creates a new instance.