summaryrefslogtreecommitdiff
path: root/test/regress/regress0/unconstrained/arith2.smt2
blob: d664647a5f2b0b337d01eb7582c6a1fbcef60b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --unconstrained-simp
(set-logic QF_AUFLIRA)
(set-info :smt-lib-version 2.6)
(set-info :category "crafted")
(set-info :status unsat)
(declare-fun v1 () Int)
(declare-fun v2 () Int)
(declare-fun v3 () Real)
(assert (= (+ v1 v2) v3))
(assert (< v3 v2))
(assert (> v3 (- v2 1)))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback