tfm-report/img/cfgsimple.dot

14 lines
301 B
Text
Raw Normal View History

2019-10-18 10:54:33 +02:00
digraph g {
2019-12-03 15:12:13 +01:00
subgraph a {
Start [shape=box];
End [shape=box];
f [label=<f (a, b)>]
Start -> "a = 10" -> "b = 20" -> f -> End;
}
subgraph b {
s [shape=box,label=<Start>];
End2 [shape=box,label=<End>];
s -> "while (x > y)" -> "x = x - 1" -> "while (x > y)" -> "print(x)" -> End2;
}
2019-10-18 10:54:33 +02:00
}