Skip to content
Snippets Groups Projects
Commit 429983e7 authored by auphelia's avatar auphelia
Browse files

[Analysis] Use new function name to find successors for analysis pass to check topological sort

parent 6f9bbaec
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ def nodes_in_expected_order(model):
all_OK = True
for n in model.graph.node:
successors = model.find_successors(n)
successors = model.find_direct_successors(n)
if successors is not None:
for successor in successors:
# check the condition by checking the antithesis
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment