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
When running the following in z3 (compiled in debug mode):
(declare-constaInt)
(declare-constbInt)
(declare-constcInt)
(declare-constdInt)
(declare-consteInt)
(declare-constfInt)
(declare-constgInt)
(declare-consthInt)
(declare-constiInt)
(assert (and
(> d 0)
(>= (* g g c (-1)) 0)
(=0 (+ (* f e) (* h g)))
(= b (+ h (- e) (* c i) (* f e (- b 1))))
(or
(=0 (div a (* b b)))
(distinct0
(+ h (* d d c) (* d c (- d) (- i) (+ i g)))
)
)
))
(assert (>= c 0))
(assert (>= e 0))
(check-sat)
I found this in 8c95dff and reproduced it on master (ea365de).
The input was reduced using ddSMT and manually cleaned up.
I also found #3684 which reported the same assertion violation. The issue was closed, but it seems because it set some solver options. Apologies if I misinterpreted this, feel free to close as a duplicate in that case.
The text was updated successfully, but these errors were encountered:
When running the following in z3 (compiled in debug mode):
z3 produces two assertion violations:
Expected behavior would be z3 just printing
sat
.Z3 was compiled in debug mode with asan and ubsan:
I found this in 8c95dff and reproduced it on master (ea365de).
The input was reduced using ddSMT and manually cleaned up.
I also found #3684 which reported the same assertion violation. The issue was closed, but it seems because it set some solver options. Apologies if I misinterpreted this, feel free to close as a duplicate in that case.
The text was updated successfully, but these errors were encountered: