git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1505
e59a4935-1847-0410-ae03-
e826735625c1
--- /dev/null
+
+(set-logic QF_BV)
+(set-info :smt-lib-version 2.0)
+(set-info :category "check")
+(set-info :status sat)
+(declare-fun v1 () (_ BitVec 5))
+(declare-fun v2 () (_ BitVec 5))
+(declare-fun v3 () (_ BitVec 5))
+
+; Identity is discovered.
+(assert (= (bvand (bvnot v1) (bvand v2 v3)) (bvand v3 (bvand (bvnot v1) v2)) ) )
+(assert (= (bvnot v1) v2 ))
+(check-sat)
+
--- /dev/null
+(set-logic QF_BV)
+(set-info :smt-lib-version 2.0)
+(set-info :category "check")
+(set-info :status sat)
+(declare-fun v0 () (_ BitVec 2))
+
+(assert (not (= (_ bv0 2) (bvor (_ bv1 2) v0 ))))
+
+
+
+(check-sat)
+(exit)
+