Evaluate expressions inside of a new module
dfdx opened this issue · 1 comments
dfdx commented
During ExGraph
evaluation we accidentally create/overwrite variables with the same names as in the graph. One way to overcome it is to perform evaluation in a separate, generated module, but it's important to import all names from the current module into that generated one.
dfdx commented
Fixed by using let
instead.