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
We are using a hard-coded method to unify scheme forms with syntax-rules. One of the disadvantages of this is that it uses a global atom to store the unifications, which makes the evaluator absolutely not thread-safe.
If we can use core.unify instead, we might simplify code and make it the interpreter thread-safe.
The text was updated successfully, but these errors were encountered:
We are using a hard-coded method to unify scheme forms with syntax-rules. One of the disadvantages of this is that it uses a global atom to store the unifications, which makes the evaluator absolutely not thread-safe.
If we can use core.unify instead, we might simplify code and make it the interpreter thread-safe.
The text was updated successfully, but these errors were encountered: