summaryrefslogtreecommitdiff
path: root/test/regress/regress0/get-value-incremental.smt2
blob: a3f3e3fce7bf274a46f8447897c0888d4e06f265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --incremental
; EXPECT: sat
; EXPECT: (((f 0) 1))
; EXIT: 10
(set-info :smt-lib-version 2.0)
(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