In this tutorial you'll learn about the structure and philosophy in our main layout algorithm KLay Layered. It is based on an idea that became known as Sugiyama-style layout, where the task to layout a graph is split into multiple subsequent steps with the goal to emphasize direction, i.e. let as many edges point into the same direction as possible.

Preliminaries

Installing Eclipse for Layout Development

Unknown macro: excerpt-include. Click on this message for details.

Getting the Source Code

Additionally, we need to get our hands on the actual source code of KLay Layered. You can find it in the pragmatics repository in our Stash.

  1. Clone the repository.
  2. Import the de.cau.cs.kieler.klay.layered plugin into your workspace.

Getting to Know KLay Layered

  1. Familiarize yourself with the general idea and architecture of the layout algorithm by reading its documentation. You should know about terms like dummy nodesintermediate processors, and phases.
  2. With this knowledge, browse the code and try to identify the packages and classes that relate to the phases of KLay Layered.
  3. Understand the differences between the KGraph and LGraph and explore how to use the LGraph. As noted in KLay Layered's documentation the LGraph is a lightweight version that is specifically tailored to serve as a data structure for layer-based layout. The following class diagram contains just about all the information you require for the assignment.
    lgraph.png

Assignment

The goal of this assignment is to write a very simple layering algorithm. As you probably already know, classically the layering phase (phase 2) expects the input graph to be acyclic. Here however, you will:

  1. Configure the layout algorithm to use a NullPhase for cycle breaking,
  2. Layer the possibly cyclic graph in a fashion as you like, and
  3. Use an intermediate processor to reverse edges (if required) such that subsequent phases are guaranteed to work with an acyclic graph.

Don't hesitate to switch between the tasks and don't be afraid of exceptions or errors during debugging. When you use your layering phase without the intermediate processors the rest of KLay Layered will most likely complain (for cyclic input graphs). In other words, the following two assignments only work combined and not alone.

There is no valid license for Pro Macros. Please visit the Licenses section.

There is no valid license for Pro Macros. Please visit the Licenses section.

There is no valid license for Pro Macros. Please visit the Licenses section.

There is no valid license for Pro Macros. Please visit the Licenses section.

 

 

 

 

A result might look like this. The default strategies of KLay Layered try to achieve short edges and a low number of reversed edges. The left screenshot shows the result of a random layerer and is obviously inferior to the result seen in the right screenshot.

 

rand.jpgklay.jpg

Tags:
Created by uru on 2015/04/17 18:28