3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

add quasi macro detection

This commit is contained in:
Nikolaj Bjorner 2023-01-06 19:53:55 -08:00
parent 25112e47b4
commit 95cb06d8cf
3 changed files with 170 additions and 5 deletions

View file

@ -28,7 +28,7 @@ Then, replace $x^n$ with a new fresh variable $y$.
```z3
(declare-const x Real)
(declare-const y Real)
(assert (> (+ (* x x x 4) (* x x 3) 0)))
(assert (> (+ (* x x x 4) (* x x 3)) 0))
(assert (= (* x x) (* y y)))
(apply degree-shift)
```