Interface EvolvingGraphGenerator<V,E>
-
- All Superinterfaces:
org.apache.commons.collections4.Factory<edu.uci.ics.jung.graph.Graph<V,E>>
,GraphGenerator<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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
evolveGraph(int numSteps)
Instructs the algorithm to evolve the graph N steps.int
numIterations()
Retrieves the total number of steps elapsed.
-