summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/ex3.smt2
blob: fd887b4bc65fde76c73e344c431d7b125cb4bbb4 (plain)
1
2
3
4
5
6
7
8
9
10
(set-logic AUFLIRA)
(set-info :smt-lib-version 2.0)
(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