Uses of Interface
org.jhotdraw8.graph.algo.AddToIntSet
Packages that use AddToIntSet
Package
Description
References:
Wikipedia.
-
Uses of AddToIntSet in org.jhotdraw8.graph
Methods in org.jhotdraw8.graph with parameters of type AddToIntSetModifier and TypeMethodDescriptionMutableIntAttributed16BitIndexedBidiGraph.seachNextVerticesAsInt(int vidx, @NonNull AddToIntSet visited, boolean dfs) ChunkedMutableIndexedBidiGraph.searchNextVertexData(int v, boolean dfs, @NonNull AddToIntSet visited) Searches for successor vertex data of the specified vertex.ChunkedMutableIndexedBidiGraph.searchNextVertices(int v, boolean dfs, @NonNull AddToIntSet visited) Searches for successor vertices of the specified vertex.MutableIntAttributed16BitIndexedBidiGraph.searchNextVerticesWithVertexData(int vidx, @NonNull AddToIntSet visited, boolean dfs) ChunkedMutableIndexedBidiGraph.searchPrevVertexData(int v, boolean dfs, @NonNull AddToIntSet visited) Searches for predecessor vertex data of the specified vertex.ChunkedMutableIndexedBidiGraph.searchPrevVertices(int vidx, boolean dfs, @NonNull AddToIntSet visited) Searches for predecessor vertices of the specified vertex.MutableIntAttributed16BitIndexedBidiGraph.searchPrevVerticesAsInt(int vidx, @NonNull AddToIntSet visited, boolean dfs) MutableIntAttributed16BitIndexedBidiGraph.searchPrevVerticesWithVertexData(int vidx, @NonNull AddToIntSet visited, boolean dfs) -
Uses of AddToIntSet in org.jhotdraw8.graph.algo
Methods in org.jhotdraw8.graph.algo that return AddToIntSetModifier and TypeMethodDescriptionstatic @NonNull AddToIntSetAddToIntSet.addToBitSet(@NonNull BitSet bitSet) Creates an instance that adds to a bit set. -
Uses of AddToIntSet in org.jhotdraw8.graph.iterator
Constructors in org.jhotdraw8.graph.iterator with parameters of type AddToIntSetModifierConstructorDescriptionBfsDfsIndexedVertexSpliterator(@NonNull Function<Integer, Enumerator.OfInt> nextFunction, int root, @NonNull AddToIntSet visited, boolean dfs) Creates a new instance. -
Uses of AddToIntSet in org.jhotdraw8.graph.path.algo
Methods in org.jhotdraw8.graph.path.algo with parameters of type AddToIntSetModifier 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.AnyIndexedVertexPathSearchAlgo.search(@NonNull Iterable<Integer> startVertices, @NonNull IntPredicate goalPredicate, @NonNull Function<Integer, Spliterator.OfInt> nextVerticesFunction, @NonNull AddToIntSet visited, int maxDepth) 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.booleanAnyIndexedVertexReachabilityAlgo.tryToReach(@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.booleanAnyIndexedVertexReachabilityAlgo.tryToReach(@NonNull Iterable<Integer> startVertices, @NonNull IntPredicate goalPredicate, @NonNull Function<Integer, Spliterator.OfInt> nextVerticesFunction, @NonNull AddToIntSet visited, @NonNull Integer maxDepth) Searches breadth-first whether a path from root to goal exists.booleanIndexedVertexReachabilityAlgo.tryToReach(@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.