forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcondition.dot
More file actions
38 lines (36 loc) · 1.22 KB
/
condition.dot
File metadata and controls
38 lines (36 loc) · 1.22 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
digraph Taskflow {
bgcolor="transparent"
rankdir="LR"
subgraph cluster_p0x7ffc2daeebe0 {
//style=invis
pendwidth=0
pencolor = transparent
p0x1676c20[label="H" ];
p0x1676d50[label="G" ];
p0x1676e80[label="F" ];
p0x1676e80 -> p0x1677700;
p0x1676fc0[label="E" ];
p0x16770d0[label="D" ];
p0x16770d0 -> p0x1677560;
p0x1677230[label="C" ];
p0x1677230 -> p0x16770d0;
p0x1677340[label="B" ];
p0x1677340 -> p0x1677230;
p0x1677450[label="A" ];
p0x1677450 -> p0x1677340;
p0x1677450 -> p0x1676e80;
p0x1677560[label="cond_1" shape=diamond color=black fillcolor=aquamarine style=filled];
p0x1677560 -> p0x1677340 [style=dashed label="0"];
p0x1677560 -> p0x1676fc0 [style=dashed label="1"];
p0x1677700[label="cond_2" shape=diamond color=black fillcolor=aquamarine style=filled];
p0x1677700 -> p0x1676d50 [style=dashed label="0"];
p0x1677700 -> p0x1676c20 [style=dashed label="1"];
p0x1676c20->I;
J[label="cond_3" shape=diamond color=black fillcolor=aquamarine style=filled];
I->J;
p0x1676fc0->K;
J->J[style=dashed label="0"]
J->L[style=dashed label="1"]
L->M;
}
}