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 87f9be7fe0

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)