summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/ackermann3.smt2
blob: 4b4137cb9f93685c2f2b9df1de60824638503b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --ackermann --no-check-models  --no-check-unsat-cores
; EXPECT: sat
(set-logic QF_UFLIA)

(declare-fun a () Int)
(declare-fun b () Int)

(declare-fun f (Int) Int)
(declare-fun g (Int) Int)

(assert (= (f (g (f (f a)))) (f (g (f (f b))))))
(assert (not (= a b)))

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