-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathprjtree.dot
More file actions
45 lines (38 loc) · 791 Bytes
/
prjtree.dot
File metadata and controls
45 lines (38 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
digraph G {
compound = true;
size = "3.5,3.0";
margin = "0.1";
node [ shape = box, style=filled,
color = lightblue, fontcolor = black, fontsize=12 ];
{
root [ label = "Root project", width = 2.0 ];
}
{ rank = same ; root };
{
ss_a [ label = "Subsystem A", width = 2.0 ];
ss_b [ label = "Subsystem B", width = 2.0 ];
}
{ rank = same ; ss_a; ss_b }
root -> ss_a;
root -> ss_b;
{
sa1 [ label = "A1" ];
sa2 [ label = "A2" ];
sa3 [ label = "A3" ];
sb1 [ label = "B1" ];
sb2 [ label = "B2" ];
sb3 [ label = "B3" ];
}
{ rank = same ; sa1; sa2; sa3; sb1; sb2; sb3 };
ss_a -> sa1;
ss_a -> sa2;
ss_a -> sa3;
ss_b -> sb1;
ss_b -> sb2;
ss_b -> sb3;
{
common [ label = "Common", width = 2.0 ];
}
sa1 -> common;
sb3 -> common;
}