first running version

This commit is contained in:
Jan-Niclas Loosen
2026-01-22 00:18:15 +01:00
parent 36ef2fd23d
commit c66222050b
12 changed files with 529 additions and 83 deletions

View File

@@ -38,7 +38,7 @@ class CFG_Node:
class CFG_START(CFG_Node):
def dot_shape(self):
return "circle"
return "box"
def dot_label(self):
return "START"
@@ -46,7 +46,7 @@ class CFG_START(CFG_Node):
class CFG_END(CFG_Node):
def dot_shape(self):
return "doublecircle"
return "box"
def dot_label(self):
return "END"