Interface EvolvingGraphGenerator<V,E>
-
- All Superinterfaces:
GraphGenerator<V,E>,com.google.common.base.Supplier<Graph<V,E>>,java.util.function.Supplier<Graph<V,E>>
- All Known Implementing Classes:
BarabasiAlbertGenerator
public interface EvolvingGraphGenerator<V,E> extends GraphGenerator<V,E>
An interface for algorithms that generate graphs that evolve iteratively.- Author:
- Scott White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidevolveGraph(int numSteps)Instructs the algorithm to evolve the graph N steps.intnumIterations()Retrieves the total number of steps elapsed.
-