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 functionality to selectively replace ** with power() fails in an edge case when ** is nested within a log function, e.g. log(x ** 2). In replace_power(), the assert that arg is bound by ( and ) fails because the arg is bound by log( and ). This is possibly also true with other similar functions, e.g. exp().