~ubuntu-branches/ubuntu/precise/graphviz/precise-security

« back to all changes in this revision

Viewing changes to graphs/directed/tree.dot

  • Committer: Bazaar Package Importer
  • Author(s): David Claughton
  • Date: 2010-03-24 22:45:18 UTC
  • mfrom: (1.2.7 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100324224518-do441tthbqjaqjzd
Tags: 2.26.3-4
Add patch to fix segfault in circo. Backported from upstream snapshot
release.  Thanks to Francis Russell for his work on this.
(Closes: #575255)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
digraph g {
2
 
node [shape = record,height=.1];
3
 
node0[label = "<f0> |<f1> G|<f2> "];
4
 
node1[label = "<f0> |<f1> E|<f2> "];
5
 
node2[label = "<f0> |<f1> B|<f2> "];
6
 
node3[label = "<f0> |<f1> F|<f2> "];
7
 
node4[label = "<f0> |<f1> R|<f2> "];
8
 
node5[label = "<f0> |<f1> H|<f2> "];
9
 
node6[label = "<f0> |<f1> Y|<f2> "];
10
 
node7[label = "<f0> |<f1> A|<f2> "];
11
 
node8[label = "<f0> |<f1> C|<f2> "];
12
 
"node0":f2 -> "node4":f1;
13
 
"node0":f0 -> "node1":f1;
14
 
"node1":f0 -> "node2":f1;
15
 
"node1":f2 -> "node3":f1;
16
 
"node2":f2 -> "node8":f1;
17
 
"node2":f0 -> "node7":f1;
18
 
"node4":f2 -> "node6":f1;
19
 
"node4":f0 -> "node5":f1;
20
 
}