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