~ubuntu-branches/ubuntu/precise/graphviz/precise-updates

« back to all changes in this revision

Viewing changes to rtest/graphs/p2.dot

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 02:06:56 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080208020656-a3cbewe5ly6dpj0s
Tags: 2.16-3ubuntu1
* Merge with Debian; remaining changes:
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev.
  - Build-depend on liblua50-dev instead of liblua5.1-0-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
graph G {
 
2
        run -- intr;
 
3
        intr -- runbl;
 
4
        runbl -- run;
 
5
        run -- runmem;
 
6
        /* run -- kernel; */
 
7
        kernel -- zombie;
 
8
        kernel -- sleep;
 
9
        kernel -- runmem;
 
10
        sleep -- swap;
 
11
        swap -- runswap;
 
12
        runswap -- new;
 
13
        runswap -- runmem;
 
14
        new -- runmem;
 
15
        sleep -- runmem;
 
16
}