summaryrefslogtreecommitdiff
path: root/test/regress/regress0/reset-assertions.smt2
blob: 3c37f2cbafac26446bf2f0280b5a360563960b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; EXPECT: sat
; EXPECT: sat
(set-logic QF_ALL)
(set-option :incremental true)
(set-option :produce-models true)

(declare-fun x () Real)
(declare-fun y () Real)
(assert (> x 0.0))
(assert (> y 0.0))
(assert (= (+ (* 2 x) y) 4))
(check-sat)
(reset-assertions)

(declare-fun a () (Array Int Int))
(assert (= (select a 4) 10))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback