summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/bv2nat-ground-c.smt2
blob: aa5acde6eba483c42d7e6db6468a6acfc871c51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; 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 #x00000007) (= a #x00000005) (= a #x00000100)))

(assert (not (= (bv2nat a) 7)))
(assert (not (= (bv2nat a) 5)))
(assert (< (bv2nat a) 10))

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