Class HorizontalCompaction<V>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.sugiyama.HorizontalCompaction<V>
-
- Direct Known Subclasses:
HorizontalCompaction
,HorizontalCompactionDeprecated
public class HorizontalCompaction<V> extends Object
- See Also:
- "Fast and Simple Horizontal Coordinate Assignment, Ulrik Brandes and Boris Köpf, Department of Computer & Information Science, University of Konstanz"
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<LV<V>,LV<V>>
alignMap
protected int
deltaX
protected int
deltaY
protected LV<V>[][]
layers
protected Map<LV<V>,LV<V>>
rootMap
protected Map<LV<V>,Integer>
shift
protected Map<LV<V>,LV<V>>
sink
protected Map<LV<V>,Integer>
x
protected Map<LV<V>,Integer>
y
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected LV<V>
align(LV<V> v)
protected void
align(LV<V> k, LV<V> v)
Point
getPoint(LV<V> v)
Map<LV<V>,Integer>
getShift()
Map<LV<V>,LV<V>>
getSink()
Map<LV<V>,Integer>
getX()
Map<LV<V>,Integer>
getY()
protected boolean
hasPredecessor(LV<V> v)
void
horizontalCompaction()
protected int
idx(LV<V> v)
protected void
placeBlock(LV<V> v)
protected int
pos(LV<V> v)
protected LV<V>
pred(LV<V> v)
return the predecessor of v in the same rankprotected LV<V>
root(LV<V> v)
protected void
root(LV<V> k, LV<V> v)
protected int
shift(LV<V> v)
protected void
shift(LV<V> k, int v)
protected LV<V>
sink(LV<V> v)
protected void
sink(LV<V> k, LV<V> v)
protected int
x(LV<V> v)
protected void
x(LV<V> v, int d)
protected int
y(LV<V> v)
protected void
y(LV<V> v, int d)
-