summaryrefslogtreecommitdiff
path: root/test/regress/regress0/push-pop/quant-fun-proc.smt2
blob: 2a12cb6776b7747fea273ceb9f9c3bceecfc7885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
; COMMAND-LINE: --incremental --fmf-fun --macros-quant --macros-quant-mode=ground --no-check-models
(set-logic UFLIA)

(define-fun f ((x Int)) Int x)

(define-fun-rec g ((x Int)) Int (ite (<= x 0) 0 (+ (g x) x)))

(declare-fun h (Int) Int)
(assert (forall ((x Int)) (= (h x) (+ x 3))))

; EXPECT: sat
(check-sat)

; EXPECT: unsat
(push 1)
(assert (= (f 1) 2))
(check-sat)
(pop 1)

; EXPECT: unsat
(push 1)
(assert (= (g 1) 5))
(check-sat)
(pop 1)

; EXPECT: unsat
(push 1)
(assert (= (h 1) 5))
(check-sat)
(pop 1)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback