summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uf/euf_simp02.smt
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-03-11 18:23:31 +0000
committerTim King <taking@cs.nyu.edu>2010-03-11 18:23:31 +0000
commit7cc72123f6b422a53c8840ca034cfdb353be59bf (patch)
treec37856ffb16ae071b1ee09416381fc86dc0acb9a /test/regress/regress0/uf/euf_simp02.smt
parentc7ccddcad95d7b6534a83a873c522b115530a553 (diff)
Added some hand generated UF tests. Unfortunartely all of them work. Also fixed some cleanup stuff.
Diffstat (limited to 'test/regress/regress0/uf/euf_simp02.smt')
-rw-r--r--test/regress/regress0/uf/euf_simp02.smt29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/regress/regress0/uf/euf_simp02.smt b/test/regress/regress0/uf/euf_simp02.smt
new file mode 100644
index 000000000..9c7b03f6e
--- /dev/null
+++ b/test/regress/regress0/uf/euf_simp02.smt
@@ -0,0 +1,29 @@
+
+(benchmark euf_simp2.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 x) (f z))
+ (= (g y) (g z))
+ (= (g y) (g z))
+ (= (g y) y)
+ (= (f x) x)
+ (= (f z) z)
+ (= (g z) z)
+ (or (not (= x z)) (not (= y z)))
+ )
+) \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback