V
- graph vertex typeE
- graph edge typepublic class WindmillGraphsGenerator<V,E> extends Object implements GraphGenerator<V,E,V>
The windmill graph $W_n^{(m)}$ is the graph obtained by taking $m$ copies of the complete graph $K_n$ with a vertex in common. The Dutch windmill graph $D_n^{(m)}$, is the graph obtained by taking $m$ copies of the cycle graph $C_3$ with a vertex in common. For the special case where $n=3$, $D_n^{(m)}$ and $W_n^{(m)}$ are identical. The class of graphs $D_3^{(m)}$ is sometimes referred to as the Friendship graph, denoted by $F_m$.
Modifier and Type | Class and Description |
---|---|
static class |
WindmillGraphsGenerator.Mode
WINDMILL and DUTCHWINDMILL Modes for the Constructor
|
Constructor and Description |
---|
WindmillGraphsGenerator(WindmillGraphsGenerator.Mode mode,
int m,
int n)
Constructs a GeneralizedPetersenGraphGenerator used to generate a Generalized Petersen graphs
$GP(n,k)$.
|
Modifier and Type | Method and Description |
---|---|
void |
generateGraph(Graph<V,E> target,
Map<String,V> resultMap)
Generate a graph structure.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
generateGraph
public WindmillGraphsGenerator(WindmillGraphsGenerator.Mode mode, int m, int n)
mode
- indicate whether the generator should generate Windmill graphs or Dutch Windmill
graphsm
- number of copies of $C_n$ (Dutch Windmill graph) or $K_n$ (Windmill graph)n
- size of $C_n$ (Dutch Windmill graph) or $K_n$ (Windmill graph). To generate
friendship graphs, set $n=3$ (the mode is irrelevant).public void generateGraph(Graph<V,E> target, Map<String,V> resultMap)
GraphGenerator
generateGraph
in interface GraphGenerator<V,E,V>
target
- receives the generated edges and vertices; if this is non-empty on entry, the
result will be a disconnected graph since generated elements will not be connected to
existing elementsresultMap
- if non-null, receives implementation-specific mappings from String roles to
graph elements (or collections of graph elements)Copyright © 2019. All rights reserved.