19 lines
919 B
Text
19 lines
919 B
Text
|
digraph Taskflow {
|
||
|
rankdir="LR";
|
||
|
p0x7fc231700030[label="init" ];
|
||
|
p0x7fc231700030 -> p0x7fc231700140;
|
||
|
p0x7fc231700140[label="cond1 (i>1 ? 1 : 0)" shape=diamond color=black fillcolor=aquamarine style=filled];
|
||
|
p0x7fc231700140 -> p0x7fc231700470 [style=dashed label="0"];
|
||
|
p0x7fc231700140 -> p0x7fc231700250 [style=dashed label="1"];
|
||
|
p0x7fc231700250[label="cond2 (i>2 ? 1 : 0)" shape=diamond color=black fillcolor=aquamarine style=filled];
|
||
|
p0x7fc231700250 -> p0x7fc231700580 [style=dashed label="0"];
|
||
|
p0x7fc231700250 -> p0x7fc231700360 [style=dashed label="1"];
|
||
|
p0x7fc231700360[label="cond3 (i>3 ? 1 : 0)" shape=diamond color=black fillcolor=aquamarine style=filled];
|
||
|
p0x7fc231700360 -> p0x7fc231700690 [style=dashed label="0"];
|
||
|
p0x7fc231700360 -> p0x7fc2317007a0 [style=dashed label="1"];
|
||
|
p0x7fc231700470[label="equl1" ];
|
||
|
p0x7fc231700580[label="equl2" ];
|
||
|
p0x7fc231700690[label="equl3" ];
|
||
|
p0x7fc2317007a0[label="grtr3" ];
|
||
|
}
|