Class EiglspergerUtil
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.eiglsperger.EiglspergerUtil
-
public class EiglspergerUtil extends Object
-
-
Constructor Summary
Constructors Constructor Description EiglspergerUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <V> void
check(LV<V>[][] layers)
static <V> List<LV<V>>
createListOfVertices(LV<V>[] rank)
Creates and returns a list of the vertices in a rank of the sparse layering array.
No Containers are inserted in the list, they will be inserted as needed in stepSix of the algorithm
-
-
-
Method Detail
-
createListOfVertices
public static <V> List<LV<V>> createListOfVertices(LV<V>[] rank)
Creates and returns a list of the vertices in a rank of the sparse layering array.
No Containers are inserted in the list, they will be inserted as needed in stepSix of the algorithm- Type Parameters:
V
- vertex type- Parameters:
rank
- one rank of a sparse layering 2d array- Returns:
- a
List
containing the vertices (LV, PVertex, QVertex) from the supplied rank.
-
check
public static <V> void check(LV<V>[][] layers)
-
-