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
This allows more compact definitions of code, better potential for symbolic reasoning, and also allows the potential of recursive functions.
It's not trivial because:
We have to somehow extract the function definition
Where should these function definitions "live"? In the definition of a particular function? For instance if we say some Y = myf(uniform(0,1)), where should the ast of myf be within Y?
The text was updated successfully, but these errors were encountered:
An AST should support function definitions.
This allows more compact definitions of code, better potential for symbolic reasoning, and also allows the potential of recursive functions.
It's not trivial because:
Y = myf(uniform(0,1))
, where should the ast ofmyf
be withinY
?The text was updated successfully, but these errors were encountered: