Uses of Interface
org.jhotdraw8.graph.path.algo.VertexPathSearchAlgo
Packages that use VertexPathSearchAlgo
-
Uses of VertexPathSearchAlgo in org.jhotdraw8.graph.path
Methods in org.jhotdraw8.graph.path with parameters of type VertexPathSearchAlgoModifier 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.Constructors in org.jhotdraw8.graph.path with parameters of type VertexPathSearchAlgo -
Uses of VertexPathSearchAlgo in org.jhotdraw8.graph.path.algo
Classes in org.jhotdraw8.graph.path.algo that implement VertexPathSearchAlgoModifier and TypeClassDescriptionclassAnyShortestVertexPathSearchAlgo<V,C extends Number & Comparable<C>> SeeAnyShortestArcPathSearchAlgofor a description of this algorithm.classAnyVertexPathSearchAlgo<V,C extends Number & Comparable<C>> SeeAnyArcPathSearchAlgofor a description of this algorithm.classUniqueOnAcyclicGraphVertexPathSearchAlgo<V,C extends Number & Comparable<C>> SeeUniqueOnAcyclicGraphArcPathSearchAlgofor a description of this algorithm.classUniqueOrOneHopVertexPathSearchAlgo<V,C extends Number & Comparable<C>> Builder for creating unique paths from a directed graph.classUniqueShortestVertexPathSearchAlgo<V,C extends Number & Comparable<C>> SeeUniqueShortestArcPathSearchAlgofor a description of this algorithm.classUniqueVertexPathSearchAlgo<V,C extends Number & Comparable<C>> SeeUniqueArcPathSearchAlgofor a description of this algorithm.