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 current implementation can cause infinite loops and infinite recursion, for example with this input:
f(x) = x
f(x)
The problem here is that the substituted expression is itself a variable with the same identifier as the variable it is substituted for, so substitution continues forever.
The text was updated successfully, but these errors were encountered:
The current implementation can cause infinite loops and infinite recursion, for example with this input:
The problem here is that the substituted expression is itself a variable with the same identifier as the variable it is substituted for, so substitution continues forever.
The text was updated successfully, but these errors were encountered: