summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/inequality04.smt2
blob: 7b5dbd7d5c5e2a1106d3b7f7ce66ff15223a1dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-logic QF_BV)
(set-info :smt-lib-version 2.0)
(set-info :category "crafted")
(set-info :status unsat)
(declare-fun v0 () (_ BitVec 16))
(declare-fun v1 () (_ BitVec 16))
(declare-fun v2 () (_ BitVec 16))
(declare-fun v3 () (_ BitVec 16))
(declare-fun v4 () (_ BitVec 16))
(declare-fun v5 () (_ BitVec 16))
(assert (and
	 (bvule v0 v1)
	 (bvule v1 v2)
	 (bvule v2 v0)
	 (bvule (_ bv4 16) v0)
	 (bvult v2 (_ bv5 16))
	 ))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback