Class VerticalAlignment<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.sugiyama.VerticalAlignment<V,E>
-
- Type Parameters:
V
-E
-
- Direct Known Subclasses:
VerticalAlignment
,VerticalAlignment.LeftmostLower
,VerticalAlignment.LeftmostUpper
,VerticalAlignment.RightmostLower
,VerticalAlignment.RightmostUpper
,VerticalAlignmentDeprecated
public abstract class VerticalAlignment<V,E> extends Object
- See Also:
- "Fast and Simple Horizontal Coordinate Assignment, Ulrik Brandes and Boris Köpf, Department of Computer & Information Science, University of Konstanz"
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VerticalAlignment.LeftmostLower<V,E>
start at last layer, work upwards looking at successor positionsstatic class
VerticalAlignment.LeftmostUpper<V,E>
start at first layer, work down, looking at predecessorsstatic class
VerticalAlignment.RightmostLower<V,E>
start at last layer, work up, looking at successorsstatic class
VerticalAlignment.RightmostUpper<V,E>
-
Field Summary
Fields Modifier and Type Field Description protected Map<LV<V>,LV<V>>
alignMap
protected LV<V>[][]
layers
protected Set<LE<V,E>>
markedSegments
protected org.jgrapht.alg.util.NeighborCache<LV<V>,LE<V,E>>
neighborCache
protected Map<LV<V>,LV<V>>
rootMap
protected org.jgrapht.Graph<LV<V>,LE<V,E>>
svGraph
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
align()
protected LV<V>
align(LV<V> v)
protected void
align(LV<V> k, LV<V> v)
protected int
alignMoveCursor(LV<V> um, LV<V> vkofi)
Map<LV<V>,LV<V>>
getAlignMap()
Map<LV<V>,LV<V>>
getRootMap()
protected boolean
notMarked(LE<V,E> edge)
protected int
pos(LV<V> v)
protected LV<V>
root(LV<V> v)
protected void
root(LV<V> k, LV<V> v)
-