Interface GraphWalkIteratorProvider<V>
-
- All Known Implementing Classes:
RandomWalkGraphIteratorProvider
,WeightedRandomWalkGraphIteratorProvider
public interface GraphWalkIteratorProvider<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<GraphWalkIterator<V>>
getGraphWalkIterators(int numIterators)
Get a list of GraphWalkIterators.
-
-
-
Method Detail
-
getGraphWalkIterators
List<GraphWalkIterator<V>> getGraphWalkIterators(int numIterators)
Get a list of GraphWalkIterators. In general: may return less than the specified number of iterators, (for example, for small networks) but never more than it- Parameters:
numIterators
- Number of iterators to return
-
-