Adding Transitions to the Conditions Tree: success !

This commit is contained in:
Jean Sirmai 2022-01-07 21:47:12 +01:00
parent 93f4a5e2e2
commit fe668f3720
Signed by: jean
GPG Key ID: FB3115C340E057E3
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ for pre, fill, node in RenderTree(root):
treestr = u"%s%s" % (pre, node.id)
if (type(node) == CondTreeNode):
print(treestr.ljust(16), node.weight, ' arrow(s) at [site', node.site,
'in cell', node.x, end='')
'in cell', node.x, end='')
if (not node.depth == 2):
print(end=']\n')
else: