summaryrefslogtreecommitdiff
path: root/test/regress/regress0/push-pop/test.01.cvc.smt2
blob: 23342e33451efdf95919788f9d06944f168f0a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; COMMAND-LINE: --incremental
; EXPECT: sat
; EXPECT: sat
; EXPECT: sat
; EXPECT: sat
(set-logic ALL)
(declare-fun x () Bool)
(declare-fun y () Bool)
(assert (or x y))
(check-sat)
(push 1)
(assert (not x))
(check-sat)
(pop 1)
(push 1)
(assert (not y))
(check-sat)
(pop 1)
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback