Closed michaelmckinsey1 closed 8 months ago
self.node_ordering is always initialized to false when creating a graph. The copy function creates a new graph, so even if the parent graph self.node_ordering=True, the copy graph will be node_ordering=False, which is undesirable.
self.node_ordering
copy
self.node_ordering=True
node_ordering=False
Summary
self.node_ordering
is always initialized to false when creating a graph. Thecopy
function creates a new graph, so even if the parent graphself.node_ordering=True
, the copy graph will benode_ordering=False
, which is undesirable.