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
Allows simplification of expressions containing non-const
Previously, abstract_objectt::expression_transform returned top
whenever one of the subexpressions of an operator was non-const,
which didn't allow simplification in situations like
int x = 0;
int y = nondet_int();
int z = x * y;
The old behavior would've replaced x * y with 0 * y,
with this change it will correctly simplify it to 0 instead.
0 commit comments