summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/arith-tighten-1.smt2
blob: 237d5b1444a7966d6fc3175d1d7fa7f1a8474bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; COMMAND-LINE: --no-check-unsat-cores --no-check-proofs
; EXPECT: unsat
(set-logic QF_LIRA)

(declare-fun n () Int)

; tests tightenings of the form [Int] >= r   to [Int] >= ceiling(r)
; where r is a real.
(assert
    (and
        (>= n 1.5)
        (<= n 1.9)
    )
)

(check-sat)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback