This commit is contained in:
Nuno Campos
2024-03-31 20:16:50 -07:00
parent a20bf12da9
commit 03bef445c6
+1 -1
View File
@@ -310,7 +310,7 @@ class CompiledGraph(Pregel):
n = graph.add_node(node, key)
start_nodes[key] = n
end_nodes[key] = n
for start, end in self.graph._all_edges:
for start, end in sorted(self.graph._all_edges):
graph.add_edge(start_nodes[start], end_nodes[end])
for start, branches in self.graph.branches.items():
for name, branch in branches.items():