Show last authors
1 The classic Sugiyama graph drawing algorithm consists of 5 phases: cycle breaking, layer assignment, crossing minimization, node placement and edge routing. Node placement sets the x-coordinates of nodes (in a downward layout) and creates alignment between nodes, improves edge straightness, or balances nodes based on their incoming edges. Node sizes can also be used to eliminate edge bends by increasing the size of nodes, as seen below, which makes the drawing easier to read, edges easier to follow and therefore easier to understand.
2
3 [[image:attach:jette-stpa-oyes-bad.png]]
4
5 [[image:attach:jette-stpa-oyes.png]]
6
7 Figure showing the current layout without flexible node size and the existing ONO (obviously not optimal) parts of a layout with flexible node size
8
9 = Goals =
10
11 * Improve the existing Network Simplex node placement strategy with flexible node size by:
12 ** centering edges on their nodes if it does not compromise the quality of the layout, if necessary by increasing node sizes even more
13 ** minimize the size of the drawing if possible
14 * (optional) Explore options that need configuration depending on the context.
15 ** alignment of edges, ...
16
17 = Scope =
18
19 Master's (Bachelor's) Thesis
20
21 = Related Work/Literature =
22
23 Emden R. Gansner, Eleftherios Koutsofios, Stephen C. North, Kiem-Phong Vo, //A technique for drawing directed graphs//. Software Engineering 19(3), pp. 214-230, 1993.
24
25 Ulf Rüegg, //Sugiyama Layouts for Prescribed Drawing Areas //([[KCSS>>url:https://www.uni-kiel.de/journals/receive/jportal_jparticle_00000341||shape="rect" class="internal-link"]] 2018/1), Chapter 4.1: Network Simplex Approach
26
27 = Involved Languages/Technologies =
28
29 * Java
30 * ELK
31 ** [[https:~~/~~/github.com/eclipse/elk/issues/853>>url:https://github.com/eclipse/elk/issues/853||shape="rect"]] (corresponding ticket in [[ELK>>url:https://www.eclipse.org/elk/||shape="rect"]])
32
33 = Supervised By =
34
35 Sören Domrös
36
37 sdo@ifi