GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.directedAll() |
Sets the generated graph(s) to be directed with edges in both directions.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.directedLeftToRight() |
Sets the generated graph(s) to be directed with edges from left to right.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.directedRightToLeft() |
Sets the generated graph(s) to be directed with edges from right to left.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.edges(int edgesNum) |
Set the number of edges what will be generated for each graph.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.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.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.parallelEdges(boolean parallelEdges) |
Determine if the generated graph(s) will contain parallel-edges.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.seed(long seed) |
Set the seed of the random number generator used to generate the graph(s).
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.undirected() |
Sets the generated graph(s) to be undirected.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.vertices(int leftVerticesNum,
int rightVerticesNum) |
Set the number of vertices that will be generated for each graph.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.vertices(int leftVerticesNum,
int rightVerticesNum,
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.
|
GnmBipartiteGraphGenerator<V,E> |
GnmBipartiteGraphGenerator.vertices(Collection<? extends V> leftVertices,
Collection<? extends V> rightVertices) |
Set the vertices of the generated graph(s).
|