summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/iand-native-2.smt2
blob: a3474784b1f3b13e35d426542a6bd352738cb7f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; COMMAND-LINE: --iand-mode=value
; COMMAND-LINE: --iand-mode=sum --bvand-integer-granularity=1
; COMMAND-LINE:  --solve-bv-as-int=iand --iand-mode=bitwise
; EXPECT: unsat
(set-logic QF_NIA)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)

(assert (and (<= 0 x) (< x 16)))
(assert (and (<= 0 y) (< y 16)))
(assert (> ((_ iand 4) x y) 0))
(assert (= (* x y) 0))
(assert (= (+ x y) 15))

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