simplify
Simplify a Z3 logical expression by removing redundancies and applying algebraic reductions to obtain an equivalent, simplified form.
Instructions
Simplify a Z3 expression.
Returns the simplified form of the given expression.
Example: simplify "And(x > 0, x > 0)" -> "x > 0"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | Yes | Z3 expression to simplify | |
| variables | No | Variable declarations: {name: type} |