summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uf/euf_simp03.smt
blob: e0d6cc84912b9b84bd2df7af2c4f64a6af79876f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

(benchmark euf_simp3.smt
:status unsat
:logic QF_UF
:category { crafted }

:extrafuns ((x U))
:extrafuns ((y U))
:extrafuns ((z U))
:extrafuns ((f U U))
:extrafuns ((g U U))
:extrafuns ((H U U U))
:extrafuns ((J U U U))



:formula
(and
 (not (= x y))
 (= (f (f x)) (f (f (f x))))
 (= (f (f x)) y)
 (= (f (f (f (f x)))) z)
 (= (f x) z)
 (not (= (f x) y))
 )
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback