File: MarkerGraph-2.dot

package info (click to toggle)
shasta 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,636 kB
  • sloc: cpp: 82,262; python: 2,348; makefile: 222; sh: 143
file content (24 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph G {
rankdir=LR;
node [shape=rectangle style=rounded color="#9e242e" width=0.5];
edge [color="#2eccc1"];
a1 [label="a"];
b1 [label="b"];
c1 [label="c"];
d1 [label="d"];
e1 [label="e"];
a1->b1;
b1->c1;
c1->d1;
d1->e1;
a2 [label="a"];
b2 [label="b"];
x2 [label="x"];
d2 [label="d"];
e2 [label="e"];
a2->b2;
b2->x2;
x2->d2;
d2->e2;
}