Class ISOMLayout<V,E>
java.lang.Object
edu.uci.ics.jung.algorithms.layout.AbstractLayout<V,E>
edu.uci.ics.jung.algorithms.layout.ISOMLayout<V,E>
- All Implemented Interfaces:
com.google.common.base.Function<V,,Point2D> Layout<V,,E> IterativeContext,Function<V,Point2D>
Implements a self-organizing map layout algorithm, based on Meyer's
self-organizing graph methods.
- Author:
- Yan Biao Boey
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected GraphElementAccessor<V, E> protected com.google.common.cache.LoadingCache<V, ISOMLayout.ISOMVertexData> Fields inherited from class edu.uci.ics.jung.algorithms.layout.AbstractLayout
graph, initialized, locations, size -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleandone()Returnstrueif the vertex positions are no longer being updated.protected ISOMLayout.ISOMVertexDatavoidInitializes fields in the node that may not have been set during the constructor.booleanThis one is an incremental visualization.voidreset()Resets the layout iteration count to 0, which allows the layout algorithm to continue updating vertex positions.voidstep()Advances the current positions of the graph elements.Methods inherited from class edu.uci.ics.jung.algorithms.layout.AbstractLayout
apply, getGraph, getSize, getX, getY, isLocked, lock, lock, offsetVertex, setGraph, setInitializer, setLocation, setLocation, setSizeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.google.common.base.Function
equals
-
Field Details
-
isomVertexData
-
elementAccessor
-
-
Constructor Details
-
ISOMLayout
-
-
Method Details
-
getStatus
- Returns:
- the current number of epochs and execution status, as a string.
-
initialize
public void initialize()Description copied from interface:LayoutInitializes fields in the node that may not have been set during the constructor. Must be called before the iterations begin.- Specified by:
initializein interfaceLayout<V,E>
-
step
public void step()Advances the current positions of the graph elements.- Specified by:
stepin interfaceIterativeContext
-
getISOMVertexData
-
isIncremental
public boolean isIncremental()This one is an incremental visualization.- Returns:
trueis the layout algorithm is incremental,falseotherwise
-
done
public boolean done()Returnstrueif the vertex positions are no longer being updated. CurrentlyISOMLayoutstops updating vertex positions after a certain number of iterations have taken place.- Specified by:
donein interfaceIterativeContext- Returns:
trueif the vertex position updates have stopped,falseotherwise
-
reset
public void reset()Resets the layout iteration count to 0, which allows the layout algorithm to continue updating vertex positions.
-