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 HORN)
(set-option :fp.xform.inline_eager false)
(declare-fun P (Int Int Int) Bool)
(declare-fun Q (Int Int Int Int) Bool)
(assert (forall ((a Int) (b Int) (c Int) (d Int))
(=> (and (Q a b c d)
(<= (+ 1 d) a)
(<= (+ 1 c) b))
(P a b c))))
(assert (forall ((a Int) (b Int) (c Int) (d Int))
(=> (>= a 1) (Q a b c d))))
(check-sat)
(get-model)
(exit)
Hello,
For this instance
z3 returns
For a >= 1 in second clause this interpretation is incorrect.
With fp.xform.inline_eager it returns correct model.
The text was updated successfully, but these errors were encountered: