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
need nodes created because of changes to the AST must be giving an id that has never been used before
The purpose of this is feature is to provide to indicate nodes which move because of a transform but are essentially the same node.
An alternative is to always create new ids whenever cloning but to also add a prevId which points to the value of the id for that node in the previous step. One benefit of this approach is that a node maybe copied several times (distribution) or collapsed into a single node (factoring).
The text was updated successfully, but these errors were encountered:
An
id
has the following behavior:id
of nodesid
that has never been used beforeThe purpose of this is feature is to provide to indicate nodes which move because of a transform but are essentially the same node.
An alternative is to always create new
id
s whenever cloning but to also add aprevId
which points to the value of theid
for that node in the previous step. One benefit of this approach is that a node maybe copied several times (distribution) or collapsed into a single node (factoring).The text was updated successfully, but these errors were encountered: