RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.directed(boolean directed) |
Determine if the generated graph(s) is directed or undirected.
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.edgeProbabilities(double a,
double b,
double c,
double d) |
Set the edge probabilities of the generated graph(s).
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.edges(int edgesNum) |
Set the number of edges what will be generated for each graph.
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.edges(int edgesNum,
IdBuilder<E> edgeBuilder) |
Set the number of edges what will be generated for each graph, and the edge builder that will be used to generate
them.
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.seed(long seed) |
Set the seed of the random number generator used to generate the graph(s).
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.vertices(int verticesNum) |
Set the number of vertices that will be generated for each graph.
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.vertices(int verticesNum,
IdBuilder<V> vertexBuilder) |
Set the number of vertices that will be generated for each graph, and the vertex builder that will be used to
generate them.
|
RecursiveMatrixGraphGenerator<V,E> |
RecursiveMatrixGraphGenerator.vertices(Collection<? extends V> vertices) |
Set the vertices set of the generated graph(s).
|