summaryrefslogtreecommitdiff
path: root/test/regress/regress0/get-value-ints.smt2
blob: 5434e3746c6be37ea5ad4c550848bd0cd07b1d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; EXPECT: sat
; EXPECT: ((pos 1) (zero 0) (neg (- 6)))
(set-info :smt-lib-version 2.6)
(set-option :produce-models true)
(set-logic QF_LIA)

; This output changes if the smt2 printer output for Ints changes.

(declare-fun pos () Int)
(declare-fun zero () Int)
(declare-fun neg () Int)

(assert (= pos 1))
(assert (= zero 0))
(assert (= neg (- 6)))

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