summaryrefslogtreecommitdiff
path: root/test/regress/regress0/unconstrained/arith4.smt2
blob: 507a18a783e98ee19c8703dbde7df9ce14d445f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --unconstrained-simp --no-check-models
(set-logic QF_AUFNIRA)
(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)
(declare-fun v5 () Real)
(assert (= (* v1 v2) (+ (* v3 v4) v5)))
(assert (< v5 1))
(assert (> v5 0))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback