This commit is contained in:
deadsmond 2019-11-25 20:36:31 +01:00
parent 5c8c2517e6
commit 0befa60e73

View File

@ -59,6 +59,11 @@ class automata:
# if the node exists
if self.graph[q]:
# search through all its connections to find value
for dic in self.graph[q]:
for val in dic.values():
print(val)
for transition in self.graph[q]:
print(transition, i)
try: