![]() |
GrammarScope
4.0.0
|
Classes | |
class | ISOMVertexData |
Public Member Functions | |
ISOMLayout0 (final Graph< V, E > g) | |
void | initialize () |
void | step () |
boolean | isIncremental () |
boolean | done () |
void | reset () |
String | getStatus () |
Protected Member Functions | |
ISOMVertexData | getISOMVertexData (final V v) |
Protected Attributes | |
final GraphElementAccessor< V, E > | elementAccessor = new RadiusGraphElementAccessor<>() |
Package Attributes | |
final Map< V, ISOMVertexData > | isomVertexData = LazyMap.decorate(new HashMap<>(), ISOMVertexData::new) |
Private Member Functions | |
synchronized void | updateParameters () |
synchronized void | adjust () |
synchronized void | adjustVertex (final V v, final Point2D tempXYD) |
Private Attributes | |
final int | maxEpoch |
int | epoch |
final int | radiusConstantTime |
int | radius |
final int | minRadius |
double | adaption |
final double | initialAdaption |
final double | minAdaption |
final double | coolingFactor |
final List< V > | queue = new ArrayList<>() |
Static Private Attributes | |
static final int | MARGIN = 10 |
static final int | MAX_EPOCH = 2000 |
static final int | RADIUS_CONSTANT_TIME = 100 |
static final int | MIN_RADIUS = 1 |
static final int | REPULSE = 3 |
static final double | INITIAL_ADAPTION = 0.9D |
static final double | MIN_ADAPTION = 0.0D |
static final double | COOLING_FACTOR = 2.0D |
static final int | EPOCH0 = 1 |
static final int | RADIUS0 = 5 |
Implements a self-organizing map layout algorithm, based on Meyer's self-organizing graph methods.
grammarscope.jung2.layout.ISOMLayout0< V, E >.ISOMLayout0 | ( | final Graph< V, E > | g | ) |
Creates an ISOMLayout
instance for the specified graph g
.
g | graph |
|
private |
|
private |
boolean grammarscope.jung2.layout.ISOMLayout0< V, E >.done | ( | ) |
Returns true
if the vertex positions are no longer being updated. Currently ISOMLayout
stops updating vertex positions after a certain number of iterations have taken place.
true
if the vertex position updates have stopped, false
otherwise
|
protected |
String grammarscope.jung2.layout.ISOMLayout0< V, E >.getStatus | ( | ) |
Returns the current number of epochs and execution status, as a string.
void grammarscope.jung2.layout.ISOMLayout0< V, E >.initialize | ( | ) |
boolean grammarscope.jung2.layout.ISOMLayout0< V, E >.isIncremental | ( | ) |
This one is an incremental visualization.
true
is the layout algorithm is incremental, false
otherwise void grammarscope.jung2.layout.ISOMLayout0< V, E >.reset | ( | ) |
Resets the layout iteration count to 0, which allows the layout algorithm to continue updating vertex positions.
void grammarscope.jung2.layout.ISOMLayout0< V, E >.step | ( | ) |
Advances the current positions of the graph elements.
|
private |
|
private |
|
staticprivate |
|
private |
|
protected |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
package |
Vertex to ISOM data
|
staticprivate |
|
staticprivate |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
private |
|
private |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
staticprivate |