From 360d24926c018d7d9a3cb9b0b6e750dde7392507 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Mon, 11 Apr 2011 15:11:08 +0000 Subject: [PATCH] oops. Meant to add this too. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1266 e59a4935-1847-0410-ae03-e826735625c1 --- unit_test/bvnot.smt2 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 unit_test/bvnot.smt2 diff --git a/unit_test/bvnot.smt2 b/unit_test/bvnot.smt2 new file mode 100644 index 0000000..fdd2066 --- /dev/null +++ b/unit_test/bvnot.smt2 @@ -0,0 +1,20 @@ +(set-logic QF_BV) +(set-info :smt-lib-version 2.0) +(set-info :category "check") +(set-info :status unsat) +(declare-fun x () (_ BitVec 6)) + + + +; This is always true. +(assert + (= + (bvnot x ) + x + ) +) + + +(check-sat) +(exit) + -- 2.47.3