summaryrefslogtreecommitdiff
path: root/test/regress/regress1/quantifiers/qbv-simple-2vars-vo.smt2
blob: f291ec0ec47271bb2d8c5fdf4955af28e867b2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; COMMAND-LINE: --cegqi-bv --cegqi-bv-ineq=keep -q
; EXPECT: sat
(set-logic BV)
(set-info :status sat)
(declare-fun a () (_ BitVec 8))
(declare-fun b () (_ BitVec 8))
(declare-fun c () (_ BitVec 8))

(assert (not (= a #x00)))

(assert (forall ((x (_ BitVec 8)) (y (_ BitVec 8))) (or 
(not (= (bvmul x y) #x0A))
(not (= (bvadd y a) #x10))
)))

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