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

(assert (< (mod x n) 0))
(assert (< (div x n) 0))

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