Uses of Class
org.jhotdraw8.graph.path.backlink.IndexedVertexBackLinkWithCost
Packages that use IndexedVertexBackLinkWithCost
-
Uses of IndexedVertexBackLinkWithCost in org.jhotdraw8.graph.path.algo
Methods in org.jhotdraw8.graph.path.algo that return IndexedVertexBackLinkWithCostModifier and TypeMethodDescriptionAnyIndexedVertexPathSearchAlgo.search(@NonNull Iterable<Integer> startVertices, @NonNull IntPredicate goalPredicate, @NonNull Function<Integer, Spliterator.OfInt> nextVerticesFunction, int maxDepth, @NonNull C zero, @NonNull C costLimit, @NonNull BiFunction<Integer, Integer, C> costFunction, @NonNull BiFunction<C, C, C> sumFunction, @NonNull AddToIntSet visited) Search engine method.IndexedVertexPathSearchAlgo.search(@NonNull Iterable<Integer> startVertices, @NonNull IntPredicate goalPredicate, @NonNull Function<Integer, Spliterator.OfInt> nextVerticesFunction, int maxDepth, @NonNull C zero, @NonNull C costLimit, @NonNull BiFunction<Integer, Integer, C> costFunction, @NonNull BiFunction<C, C, C> sumFunction, @NonNull AddToIntSet visited) Search engine method. -
Uses of IndexedVertexBackLinkWithCost in org.jhotdraw8.graph.path.backlink
Methods in org.jhotdraw8.graph.path.backlink that return IndexedVertexBackLinkWithCostModifier and TypeMethodDescriptionstatic <CC extends Number & Comparable<CC>>
@Nullable IndexedVertexBackLinkWithCost<CC> IndexedVertexBackLink.toIndexedVertexBackLinkWithCost(@Nullable IndexedVertexBackLink node, @NonNull CC zero, @NonNull BiFunction<Integer, Integer, CC> costFunction, @NonNull BiFunction<CC, CC, CC> sumFunction) Converts anIndexedVertexBackLinktoIndexedVertexBackLinkWithCost.Methods in org.jhotdraw8.graph.path.backlink with parameters of type IndexedVertexBackLinkWithCostModifier and TypeMethodDescriptionstatic <XX,CC extends Number & Comparable<CC>>
@Nullable SimpleOrderedPair<ImmutableList<XX>, CC> IndexedVertexBackLinkWithCost.toVertexSequence(@Nullable IndexedVertexBackLinkWithCost<CC> node, @NonNull Function<IndexedVertexBackLinkWithCost<CC>, XX> mappingFunction) Converts anArcBackLinkWithCostinto a vertex sequence.Method parameters in org.jhotdraw8.graph.path.backlink with type arguments of type IndexedVertexBackLinkWithCostModifier and TypeMethodDescriptionstatic <XX,CC extends Number & Comparable<CC>>
@Nullable SimpleOrderedPair<ImmutableList<XX>, CC> IndexedVertexBackLinkWithCost.toVertexSequence(@Nullable IndexedVertexBackLinkWithCost<CC> node, @NonNull Function<IndexedVertexBackLinkWithCost<CC>, XX> mappingFunction) Converts anArcBackLinkWithCostinto a vertex sequence.Constructors in org.jhotdraw8.graph.path.backlink with parameters of type IndexedVertexBackLinkWithCostModifierConstructorDescriptionIndexedVertexBackLinkWithCost(int vertex, @Nullable IndexedVertexBackLinkWithCost<C> parent, @NonNull C cost) Creates a new instance.