summaryrefslogtreecommitdiff
path: root/test/regress/regress0/buggy-ite.smt2
blob: 79e91b55eb03c3edf57b56ccee6cf52ca8112c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; This was causing trouble in CVC4 r1434 due to mishandling of ITE
; removal for PARAMETERIZED kinds.
; Thanks to Andrew Reynolds for catching this.
(set-logic QF_UF)
(set-info :smt-lib-version 2.0)
(set-info :status sat)
(declare-sort U 0)
(declare-fun a () U)
(declare-fun c () Bool)
(declare-fun g (U) Bool)
(assert (g (ite c a a)))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback