summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/ackermann2.smt2
blob: 9c02c830b82e00141d8a901b59a834afa01d6fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --ackermann 
; 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