Package | Description |
---|---|
de.uni_due.inf.ti.graph.random |
This package contains classes which generate random graphs, rules and
other graph-related objects.
|
Modifier and Type | Method and Description |
---|---|
RandomGraphGenerator.Connectedness |
RandomGraphGenerator.getConnectedness()
Returns the connectedness setting of this RandomGraphGenerator.
|
static RandomGraphGenerator.Connectedness |
RandomGraphGenerator.Connectedness.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RandomGraphGenerator.Connectedness[] |
RandomGraphGenerator.Connectedness.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
RandomGraphGenerator.setConnectedness(RandomGraphGenerator.Connectedness c)
Sets the connectedness setting of this RandomGraphGenerator.
|
Constructor and Description |
---|
RandomGraphGenerator(de.uni_due.inf.ti.random.Distribution<java.lang.Integer> nodeCountDistribution,
de.uni_due.inf.ti.random.Distribution<java.lang.Double> densityDistribution,
de.uni_due.inf.ti.random.DiscreteDistribution<Label> labelDistribution,
RandomGraphGenerator.Connectedness connectedness)
Creates a new RandomGraphGenerator with user-specified distributions for
the number of nodes and the density and a user-specified connectedness
setting.
|
RandomGraphGenerator(int numOfNodes,
double density,
java.util.Collection<Label> signature,
RandomGraphGenerator.Connectedness connectedness)
Creates a new RandomGraphGenerator which generates graph with a
user-specified number of nodes and density.
|