summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/ex3.smt2
blob: c08908e30f5a8320fe4ffcdecb383e9b89305a96 (plain)
1
2
3
4
5
6
7
8
9
10
(set-logic AUFLIRA)
(set-info :smt-lib-version 2.6)
(set-info :category "industrial")
(set-info :status unsat)
(declare-sort U 0)
(declare-fun a () U)
(declare-fun f (U) U)
(assert (and (not (= (f (f a)) a)) (forall ((x U)) (= (f x) x))))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback