summaryrefslogtreecommitdiff
path: root/test/regress/regress0/get-value-incremental.smt2
blob: c45cced820fcc98e8eca1e0fa337f3f4e547d99f (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.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