summaryrefslogtreecommitdiff
path: root/test/regress/regress1/arith/mod.03.smt2
blob: 583c72a93553290ca162522000e6af78014435ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; COMMAND-LINE: -q
; 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