summaryrefslogtreecommitdiff
path: root/test/regress/regress0/get-value-incremental.smt2
blob: 6c3ee89abd76a8d0af90be9dae8fbc3a8c58100c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --incremental
; EXPECT: sat
; EXPECT: (((f 0) 1))
(set-info :smt-lib-version 2.6)
(set-option :produce-models true)
(set-logic QF_UFLIA)

(declare-fun f (Int) Int)
(assert (= (f 0) 1))
(check-sat)
(get-value ((f 0)))
; add a "push" just to double-check that incremental mode is on
(push)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback