summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/ex6.smt2
blob: 7285e1c4f29d94d8d4f814706053f2c225330526 (plain)
1
2
3
4
5
6
7
8
9
10
11
(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 S (U) U)
(declare-fun G (U U) Bool)
(assert (and (forall ((x U)) (G (S x) x)) (forall ((x U) (y U) (z U)) (=> (and (G x y) (G y z)) (G x z))) (not (G (S (S a)) a))))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback