(set-logic QF_BV) (set-info :status sat) (declare-const v0 (_ BitVec 8)) (declare-const v1 (_ BitVec 8)) (declare-const v2 (_ BitVec 8)) (assert (= #b1 (ite (distinct v0 v1) #b1 #b0))) (assert (= #b1 (ite (distinct v1 v2) #b1 #b0))) (assert (= #b1 (ite (distinct v2 v0) #b1 #b0))) (assert (= #b1 (ite (distinct v0 (bvnot v1)) #b1 #b0))) (assert (= #b1 (ite (distinct v0 (bvnot v2)) #b1 #b0))) (assert (= #b1 (ite (distinct v1 (bvnot v2)) #b1 #b0))) (check-sat)