See: Description
| Class | Description |
|---|---|
| EachVertexInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Traverse each Vertex in the graph, and initialize it with a given
consumer function.
|
| Small1GraphInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Create a network that looks like:
1 5
/ \ / \ 6
0---2--3---4
where 6 is disconnected from the rest of the network.
|
| Small2GraphInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Create a network that looks like:
1 5
/ \ / \ 6
0---2 3---4
where 6 is disconnected from the rest of the network.
|
| SmallDirectedForestGraphInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Create a directed forest that looks like:
0 4 6
/ \ | / \
1 2 5 7 8
|
3
Edges are directed from top to bottom.
|
| SmallDirectedTreeGraphInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Create a directed tree that looks like:
0 __
/ \ \
1 2 6
| |\
3 4 5
Edges are directed from top to bottom.
|
| SyntheticGraphInit<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,E extends org.apache.hadoop.io.Writable> |
Creates synthetic graphs, that can have community structure.
|
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.