From cfb4587e26623318f432c7e3e21711afc2b966e7 Mon Sep 17 00:00:00 2001 From: Chantal Keller Date: Mon, 12 Jan 2015 16:28:10 +0100 Subject: Initial import of SMTCoq v1.2 --- unit-tests/sat5.smt2 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 unit-tests/sat5.smt2 (limited to 'unit-tests/sat5.smt2') diff --git a/unit-tests/sat5.smt2 b/unit-tests/sat5.smt2 new file mode 100644 index 0000000..d46092c --- /dev/null +++ b/unit-tests/sat5.smt2 @@ -0,0 +1,7 @@ +(set-logic QF_UF) +(declare-fun a () Bool) +(declare-fun b () Bool) +(declare-fun c () Bool) +(assert (and (or a b c) (or (not a) (not b) (not c)) (or (not a) b) (or (not b) c) (or (not c) a))) +(check-sat) +(exit) -- cgit