summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/ackermann4.smt2
blob: 1b76e10757203ef70c2165c75e25a68480b52044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; COMMAND-LINE: --ackermann --no-check-models --no-check-proofs --no-check-unsat-cores
; EXPECT: unsat
(set-logic QF_ALIA)
(set-info :smt-lib-version 2.0)
(set-info :category "crafted")
(set-info :status unsat)

(define-sort bv () Int)
(define-sort abv () (Array bv bv))

(declare-fun v0 () Int)
(declare-fun v1 () Int)
(declare-fun a () abv)
(declare-fun b () abv)
(declare-fun c () abv)

(assert (not (= (select a (select b (select c v0))) (select a (select b (select c v1))))))

(assert (= v0 v1))

(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback