We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the problem
(declare-fun x () Real) (declare-fun y () Real) (declare-fun z () Real) (assert (<= 0 x)) (assert (<= 0 y)) (assert (< (+ x y) z)) (minimize z) (check-sat) (get-model) (get-objectives)
It seems like the solution should be "z = epsilon", but instead the output is
z = epsilon
sat ( (define-fun z () Real (/ 1.0 2.0)) (define-fun y () Real 0.0) (define-fun x () Real 0.0) ) (objectives (z (/ 1.0 2.0)) )
(This is from Z3 version 4.8.10 on Linux, but more recent versions produced similar results.)
The text was updated successfully, but these errors were encountered:
b6d71fc
No branches or pull requests
For the problem
It seems like the solution should be "
z = epsilon
", but instead the output is(This is from Z3 version 4.8.10 on Linux, but more recent versions produced similar results.)
The text was updated successfully, but these errors were encountered: