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
The issue of the infinite recursion is as follows:
When you are processing X and part of that processing is to do many other things, one of which is to eventually need to process X - which appears to need processing because the original task has not completed.
It is currently implemented using the "dynamic scoping in python" Environment object. It is probably better to keep track of what objects are being processed and passing a list around as an argument to the various methods.
The text was updated successfully, but these errors were encountered:
The issue of the infinite recursion is as follows:
It is currently implemented using the "dynamic scoping in python" Environment object. It is probably better to keep track of what objects are being processed and passing a list around as an argument to the various methods.
The text was updated successfully, but these errors were encountered: