Replies: 1 comment
-
https://microsoft.github.io/z3guide/docs/strategies/summary/#tactic-simplify |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any functionality to manipulate expressions. Similar to computer algebra systems?
I'm not asking for an advanced simplify() function. Although that would be great.
I'm just looking for an expand() function.
From what I can find. There is no possible way to expand equations like
(a+b)*(c+d+e)
->a*c + a*d + a*e + b*c + b*d + b*e
I've been unable to find any methods to expand equations like this.
Are there any tactics which can do this manipulation of expressions?
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions