Remove edges in constructor

This commit is contained in:
Jan-Niclas Loosen
2026-01-22 20:26:41 +01:00
parent 3abe8581b5
commit 51028555de
77 changed files with 3964 additions and 309 deletions

View File

@@ -0,0 +1,20 @@
digraph CFG {
node [fontname="Helvetica"];
n917 [label="START", shape=box];
n917 -> n919;
n919 [label="2", shape=box];
n919 -> n920;
n920 [label="0", shape=box];
n920 -> n921;
n921 [label="2 == 0", shape=box];
n921 -> n922;
n922 [label="False", shape=box];
n922 -> n923;
n923 [label="(2 == 0) == False", shape=box];
n923 -> n924;
n924 [label="<?>", shape=diamond];
n924 -> n928 [label="T"];
n928 [label="1", shape=box];
n924 -> n929 [label="F"];
n929 [label="0", shape=box];
}