summaryrefslogtreecommitdiff
path: root/test/regress/regress0/unconstrained/arith3.smt2
blob: edf0d4cdf37463e6e7f72a086776851c36db2395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --unconstrained-simp --no-check-models
(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 () 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