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
In Vampire's AVATAR mod Z3, we need every bool literal to get a definite value in a model, however, Z3 is refusing to decided on the following example.
;- z3 parameter: rewriter.expand_store_eq=1
;- z3 parameter: model.compact=1
(declare-datatypes ( (Nat 0) ) (
( ( zero ) ( s ( p Nat ) ) )
))
(declare-fun v () Bool)
(assert (= v (= (p zero) zero)))
(check-sat)
(get-model)
(get-value (v))
giving us
sat
(
(define-fun v () Bool
(= (p zero) zero))
)
((v (= (p zero) zero)))
The text was updated successfully, but these errors were encountered:
In Vampire's AVATAR mod Z3, we need every bool literal to get a definite value in a model, however, Z3 is refusing to decided on the following example.
giving us
The text was updated successfully, but these errors were encountered: