summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/iand-native-2.smt2
blob: 6b39598ead4f1fd30cf9d45722cb8f2b232ab58f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --iand-mode=value
; COMMAND-LINE: --iand-mode=sum --bvand-integer-granularity=1
; 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