Uses of Class
org.wilmascope.graphgen.GraphGenerator

Packages that use GraphGenerator
org.wilmascope.graphgen.plugin   
 

Uses of GraphGenerator in org.wilmascope.graphgen.plugin
 

Subclasses of GraphGenerator in org.wilmascope.graphgen.plugin
 class ClusteredGraphGenerator
          Generates a random clustered graph with a specified number of nodes and edges with random node positions in either 2 or 3 dimensions.
 class GridGenerator
          Generates a "grid graph", that is, a rectangular lattice of arbitrary width and height.
 class RandomGraphGenerator
          Generates a random (connected) graph with (up to) a specified number of nodes and edges with random node positions in either 2 or 3 dimensions.
 class ScaleFreeGraphGenerator
          Generate a scale-free graph based on a stochastic model in which for each node u that is added, all existing nodes v i are considered and an edge ( u , v i ) is created with probability (1+deg( u ))/sum(deg( v j ))
 class StratifiedGraphGenerator
          Creates a small "stratified graph": that is, an evolving graph with each iteration of the graph arranged in a plane, and the set of planes for all time steps stacked into the third dimension.
 class TreeGenerator
          Generates a tree.