summaryrefslogtreecommitdiff
path: root/test/regress/regress1/quantifiers/cbqi-sdlx-fixpoint-3-dd.smt2
blob: 4d5cf4ec4d75c710d8d4dd19d0c3f729e29fa7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; COMMAND-LINE: --cbqi --decision=internal
; EXPECT: unsat
(set-logic LIA)
(set-info :status unsat)

(assert (or 
(forall ((H Int) (G Int)) (= (= G 0) (= H 0)))

(forall ((C Int) (D Int) (E Int)) (or 
(= (= D 0) (= C 0)) 
(and 
(not (forall ((G Int)) (= (= E 0) (= G 0)))) 
(not (forall ((A Int)) 
  (not (= (ite (= A 0) 0 1) (ite (= C 0) 0 2)))
))
)))
))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback