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
While simplify is already virtual, it isn't really a useful extension
point because it's called only at the start of the simplification, and
all the real work is handed off to simplify_rec which, in turn, calls
simplify_node, and then both of which can be recursed into from further
down the expression tree.
In order to customise the expression simplification we need to be able
to hook into that recursive call, and simplify_node is the most useful
place to do that.
0 commit comments