Uses of Interface
com.jgalgo.alg.traversal.RandomWalkIter
-
Packages that use RandomWalkIter Package Description com.jgalgo.alg.traversal Algorithms for traversing graphs, such as depth-first search and breadth-first search. -
-
Uses of RandomWalkIter in com.jgalgo.alg.traversal
Subinterfaces of RandomWalkIter in com.jgalgo.alg.traversal Modifier and Type Interface Description static interface
RandomWalkIter.Int
A random walk iterator forIntGraph
.Methods in com.jgalgo.alg.traversal that return RandomWalkIter Modifier and Type Method Description static <V,E>
RandomWalkIter<V,E>RandomWalkIter. newInstance(Graph<V,E> g, V source)
Create a new random walk iterator.static <V,E>
RandomWalkIter<V,E>RandomWalkIter. newInstance(Graph<V,E> g, V source, WeightFunction<E> weights)
Create a new weighted random walk iterator.
-