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,27 @@
digraph CFG {
node [fontname="Helvetica"];
n903 [label="START", shape=ellipse, style=filled, color=gray];
n903 -> n905;
n905 [label="1", shape=box];
n905 -> n906;
n906 [label="2", shape=box];
n906 -> n907;
n907 [label="1 > 2", shape=box];
n907 -> n908;
n908 [label="3", shape=box];
n908 -> n909;
n909 [label="5", shape=box];
n909 -> n910;
n910 [label="3 < 5", shape=box];
n910 -> n911;
n911 [label="(1 > 2) || (3 < 5)", shape=box];
n911 -> n912;
n912 [label="<?>", shape=diamond];
n912 -> n916 [label="T"];
n912 -> n917 [label="F"];
n916 [label="1", shape=box];
n916 -> n904;
n904 [label="END", shape=ellipse, style=filled, color=gray];
n917 [label="0", shape=box];
n917 -> n904;
}