summaryrefslogtreecommitdiff
path: root/test/regress/regress1/arith/div.03.smt2
blob: 8beef7a69b20fdff8d06e63aa794730112a31c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; EXPECT: unsat
(set-logic QF_NIA)
(set-info :smt-lib-version 2.0)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun n () Int)

(assert (> n 0))
(assert (>= x n))
(assert (< (div x n) 1))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback