summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/bv2nat-ground-c.smt2
blob: 2bb09c2cf73cd4129b36bc8d82b6241cd87e955b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(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