summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/bv2nat-ground.smt2
blob: bfc22850e45eefbc7e410c63fa6825e7ea9a70fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; COMMAND-LINE: --no-check-proofs --no-check-unsat-cores
; EXPECT: unsat
(set-logic QF_BVLIA)
(set-info :status unsat)
(declare-const a (_ BitVec 32))
(declare-const b (_ BitVec 32))
(declare-const c (_ BitVec 32))
(declare-const d (_ BitVec 32))
(declare-const e (_ BitVec 32))

(assert (or (= a b) (= a c) (= a d) (= a e)))

(assert (not (= (bv2nat a) (bv2nat b))))
(assert (not (= (bv2nat a) (bv2nat c))))
(assert (not (= (bv2nat a) (bv2nat d))))
(assert (not (= (bv2nat a) (bv2nat e))))

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