Layered Graph Drawing (The Sugiyama Method)

September 28, 2011 § Leave a comment

There are various graph drawing conventions and aesthetics. Consider a digraph, we would like:

  1. Edges roughly pointed in one direction
  2. a. Nodes evenly distributed
    b. Long edges avoided.
  3. Edge Crossing Minimized.
  4. Edges should be as straight / vertical as possible.

.

The Sugiyama Method aims to address these conventions, and is useful for dependency diagrams, flow diagrams, conceptual lattices and other directed graphs. Essentially, layered networks are useful in representing Dependency relations.

The Sugiyama Method:

  1. Cycle Removal
    – may temporarily Reverse some edges
    – each cycle must have at least one edge against the flow (NP Hard), requires heuristic (e.g. enhanced greedy heuristic) or Randomized Algorithms.
  2. Layering. (assigning y)
    – vertices may be introduced to split edges
  3. Node Ordering
    – the Ordering is all that matters (not co-ordinates), NP Hard.
    – Many heuristics. e.g. Layer-by-layer sweep (two-layer crossing problem), addressed by 1. Sorting, 2. Barrycentre, or 3. Median, methods.
  4. Co-Ordinate Assignment.

Slides on this topic can be found here.

Leave a comment

What’s this?

You are currently reading Layered Graph Drawing (The Sugiyama Method) at DECO } Han.

meta