-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtree.dot
More file actions
64 lines (43 loc) · 1.33 KB
/
tree.dot
File metadata and controls
64 lines (43 loc) · 1.33 KB
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
46
47
48
49
50
51
52
53
54
55
56
digraph tree {
edge[dir=back]
subgraph cluster_master {
label="master"
node [group=main]
A1 -> A2 -> A3 -> A4 -> A4_B2_merge -> A5 [group=main]
C1_new [label="C1"]
C2_new [label="C2"]
C1_new -> C2_new -> C3 [group=main]
C3 -> D2_C3_merge [group=main]
br_master [shape=rectangle; label="master"]
// br_master -> A1 [style=dashed]
// br_master -> A2 [style=dashed]
br_master -> D2_C3_merge [weight=0; dir=forward]
{rank=same; D2_C3_merge; br_master}
}
subgraph cluster_branching {
label="branching"
B1 -> B2
// br_branching [shape=rectangle; label="branching"]
// br_branching -> B2
// {rank=same; B2; br_branching}
}
A3 -> B1 [weight=0]
B2 -> A4_B2_merge [weight=0]
subgraph cluster_rebase {
label="rebase"
C1 [style=dashed]
C2 [style=dashed]
C1 -> C2
br_rebase[label="rebase"; shape="rectangle"]
}
A4_B2_merge -> C1 [weight=0]
A5 -> C1_new
br_rebase -> C3 [weight=0; dir=forward]
subgraph cluster_branching2 {
label="branching2"
D1 -> D2
}
D2 -> D2_C3_merge [weight=0]
A4 -> D1 [weight=0]
// {rank=same; br_rebase; C3}
}