Add generated dot files

This commit is contained in:
Jan-Niclas Loosen
2026-01-23 13:01:50 +01:00
parent add07249dc
commit f0877b5685
37 changed files with 1857 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
digraph CFG {
node [fontname="Helvetica"];
n918 [label="START", shape=ellipse, style=filled, color=gray];
n918 -> n920;
n920 [label="2", shape=box];
n920 -> n921;
n921 [label="0", shape=box];
n921 -> n922;
n922 [label="2 == 0", shape=box];
n922 -> n923;
n923 [label="False", shape=box];
n923 -> n924;
n924 [label="(2 == 0) == False", shape=box];
n924 -> n925;
n925 [label="<?>", shape=diamond];
n925 -> n929 [label="T"];
n925 -> n930 [label="F"];
n929 [label="1", shape=box];
n929 -> n919;
n919 [label="END", shape=ellipse, style=filled, color=gray];
n930 [label="0", shape=box];
n930 -> n919;
}