summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/ackermann8.smt2
blob: 2a424e0851d058c910df1353dfa580a45196e04d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; COMMAND-LINE: --ackermann --no-check-models --no-check-proofs --no-check-unsat-cores
; EXPECT: unsat
(set-logic QF_UFBV)

(declare-sort S 0)
(declare-sort T 0)

(declare-fun s1 () S)
(declare-fun s2 () S)
(declare-fun s3 () S)

(declare-fun a () (_ BitVec 1))
(declare-fun b () (_ BitVec 1))
(declare-fun c () (_ BitVec 1))

(assert (not (= s1 s2)))
(assert (not (= s2 s3)))
(assert (not (= s3 s1)))

(assert (not (= a b)))
(assert (not (= b c)))
(assert (not (= c a)))

(check-sat)
(exit)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback