You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(set-logic QF_BV)
(declare-fun a () (_ BitVec 32))
(declare-fun b () (_ BitVec 32))
(declare-fun c () (_ BitVec 32))
(assert (bvugt a #x0000A000))
(assert (bvugt b #x0000A000))
(assert (bvuge c #xFFFFFFF0))
(assert (= c (bvmul a b)))
(check-sat)
the output of mcBV is
Z3> Error, literal in conflict clause is not false (-43=True)
unsat
but the formula is satisfiable (as witnessed by Z3 or Boolector).
For the formula
the output of mcBV is
but the formula is satisfiable (as witnessed by Z3 or Boolector).
The error occurs with
b080e3a