'hm'
This commit is contained in:
parent
5c8c2517e6
commit
0befa60e73
@ -59,6 +59,11 @@ class automata:
|
|||||||
# if the node exists
|
# if the node exists
|
||||||
if self.graph[q]:
|
if self.graph[q]:
|
||||||
# search through all its connections to find value
|
# 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]:
|
for transition in self.graph[q]:
|
||||||
print(transition, i)
|
print(transition, i)
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user