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
Simply wrapping everything into a let block does not address this issue. For example,
@devec r = a + b
There is a statement that creates the result r. If this is encapsulated into a let-block, the created variable will not be available in the calling scope.
So I may have to review the code-gen, and try to improve it to reduce the leaking of gensym variables.
At current point, try to encapsulate the use of @devec within functions, which may prevent those variables from leaking into main space.
Here's an example. For
@devec_transform
(issue #18), I got around that usinglet
, but I'm not sure if that'll work here.The text was updated successfully, but these errors were encountered: