Uses of Class
org.jhotdraw8.graph.path.SimpleVertexSequenceFinder
Packages that use SimpleVertexSequenceFinder
-
Uses of SimpleVertexSequenceFinder in org.jhotdraw8.graph.path
Methods in org.jhotdraw8.graph.path that return SimpleVertexSequenceFinderModifier and TypeMethodDescriptionstatic <VV> @NonNull SimpleVertexSequenceFinder<VV, Integer> SimpleVertexSequenceFinder.newIntCostInstance(@NonNull Function<VV, Iterable<VV>> nextVerticesFunction, @NonNull BiFunction<VV, VV, Integer> costFunction, @NonNull VertexPathSearchAlgo<VV, Integer> algo) Creates a new instance which has a cost function that returns integer numbers.static <VV> @NonNull SimpleVertexSequenceFinder<VV, Integer> SimpleVertexSequenceFinder.newIntCostInstance(@NonNull Function<VV, Iterable<VV>> nextVerticesFunction, @NonNull VertexPathSearchAlgo<VV, Integer> algo) Creates a new instance which has a int cost function that counts the number of arrows.static <VV> @NonNull SimpleVertexSequenceFinder<VV, Long> SimpleVertexSequenceFinder.newLongCostInstance(@NonNull Function<VV, Iterable<VV>> nextVerticesFunction, @NonNull BiFunction<VV, VV, Long> costFunction, @NonNull VertexPathSearchAlgo<VV, Long> algo) Creates a new instance which has a cost function that returns long numbers.