summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/inequality04.smt2
blob: dc02322b11e660dc85d7b14c2af6692a24c0d6c0 (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.6)
(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)
	 (bvult (_ 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