GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.directedAll() |
Sets the generated graph(s) to be directed with edges in both directions.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.directedLeftToRight() |
Sets the generated graph(s) to be directed with edges from left to right.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.directedRightToLeft() |
Sets the generated graph(s) to be directed with edges from right to left.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.edgeProbability(double p) |
Set the probability each edge will exists in the generated graph(s).
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.edges(IdBuilder<E> edgeBuilder) |
Set the edge builder that will be used to generate edges.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.seed(long seed) |
Set the seed of the random number generator used to generate the graph(s).
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.undirected() |
Sets the generated graph(s) to be undirected.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.vertices(int leftVerticesNum,
int rightVerticesNum) |
Set the number of vertices that will be generated for each graph.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.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.
|
GnpBipartiteGraphGenerator<V,E> |
GnpBipartiteGraphGenerator.vertices(Collection<? extends V> leftVertices,
Collection<? extends V> rightVertices) |
Set the vertices of the generated graph(s).
|