summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/ackermann2.smt2
blob: f20fd99bfca4f99621ec3450106baf6081b12fb4 (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: unsat
(set-logic QF_UFLIA)

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

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

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

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