You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first remove (generate_traversal_graph): # does: if only one traversal, just use it if len(traversals) <= 3: graph[0].add((1, (0, 0))) graph[1].add((2, (0, 0))) return graph, traversals
and (traverse_recursive): elif len(critical_traversals) == 1: # if only one critical event is found …
then fix errors
The text was updated successfully, but these errors were encountered:
first remove (generate_traversal_graph):
# does: if only one traversal, just use it if len(traversals) <= 3: graph[0].add((1, (0, 0))) graph[1].add((2, (0, 0))) return graph, traversals
and (traverse_recursive):
elif len(critical_traversals) == 1: # if only one critical event is found …
then fix errors
The text was updated successfully, but these errors were encountered: