test: add regression test for LRA bug

This commit is contained in:
Simon Cruanes 2023-06-23 15:54:06 -04:00
parent 619da6fbcb
commit 4be08675a1
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -0,0 +1,4 @@
(declare-const p Bool)
(declare-const x Real)
(assert (and (= x (ite p 1 0.0)) (= 0.0 (ite p 1 (+ 1 x)))))
(check-sat)