sidekick/tests/unsat/test_ite_1.smt2
2020-01-14 20:23:14 -06:00

8 lines
180 B
Text

(declare-sort U 0)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun cond () Bool)
(declare-fun p (U) Bool)
(assert (and (= a b) (p a) (not (p (ite cond a b)))))
(check-sat)