aboutsummaryrefslogtreecommitdiffstats
path: root/examples/euf.smt2
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@inria.fr>2015-01-12 16:28:10 +0100
committerChantal Keller <Chantal.Keller@inria.fr>2015-01-12 16:28:10 +0100
commitcfb4587e26623318f432c7e3e21711afc2b966e7 (patch)
treea90c6f372633458aa0766510bcfdc4682eaa8f6a /examples/euf.smt2
parent1e10dcc783b82269cc3fe3bb7419b9c1cc9e0fa7 (diff)
downloadsmtcoq-cfb4587e26623318f432c7e3e21711afc2b966e7.tar.gz
smtcoq-cfb4587e26623318f432c7e3e21711afc2b966e7.zip
Initial import of SMTCoq v1.2
Diffstat (limited to 'examples/euf.smt2')
-rw-r--r--examples/euf.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/euf.smt2 b/examples/euf.smt2
new file mode 100644
index 0000000..c151654
--- /dev/null
+++ b/examples/euf.smt2
@@ -0,0 +1,11 @@
+(set-logic QF_UF)
+(declare-sort U 0)
+(declare-fun a () U)
+(declare-fun b () U)
+(declare-fun c () U)
+(declare-fun d () U)
+(declare-fun e () U)
+(declare-fun f () U)
+(assert (and (= a b) (= b c) (= c d) (= c e) (= e f) (not (= a f))))
+(check-sat)
+(exit)