summaryrefslogtreecommitdiff
path: root/test/regress/regress1/model-blocker-values.smt2
blob: 65db79ca4dbcda79746dfd84b1cf766c5bf3e8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; COMMAND-LINE: --incremental --produce-models --block-models=values
; EXPECT: sat
; EXPECT: sat
; EXPECT: sat
(set-logic QF_UFLIA)
(declare-fun a () Int)
(declare-fun b () Int)
(declare-fun c () Int)
(declare-fun f (Int) Int)
(assert (distinct (f a) (f b)))
(assert (= c (f a)))
(assert (distinct a b))
(assert (and (>= a 0) (>= b 0) (< a 2) (< b 2)))
(check-sat)
(block-model)
(check-sat)
(block-model)
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback