summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/iand-native-granularities.smt2
blob: e895663f8217c5c3d97b4277bd48217abbff104e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; COMMAND-LINE: --iand-mode=value
; COMMAND-LINE: --iand-mode=sum --bvand-integer-granularity=1 --finite-model-find
; COMMAND-LINE: --iand-mode=bitwise
; COMMAND-LINE: --iand-mode=bitwise --bvand-integer-granularity=1
; COMMAND-LINE: --iand-mode=bitwise --bvand-integer-granularity=3
; COMMAND-LINE: --iand-mode=bitwise --bvand-integer-granularity=4
; EXPECT: unsat
(set-logic QF_NIA)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)

(assert (>= x 0))
(assert (>= y 0))

(assert (<= (+ x y) 32))

(assert (or
           (>= ((_ iand 5) x y) 32)
           (>= ((_ iand 6) x y) 32)))

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