-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
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
Unsoundness bug with smt2 file over arctan2 function. #258
Labels
Comments
Thanks for the report. I'll check it. |
A smaller example: (set-logic QF_NRA)
(declare-fun y () Real)
(declare-fun z () Real)
(assert (= z (arctan2 3 y)))
(check-sat)
(exit) Trace:
|
FTR, this is from IBEX. I'm checking newer versions if I can reproduce it. |
Thanks for taking the time. |
@KJongUk , can you create a small reproducible example only using IBEX? Then I'd open an issue there. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the following input, and precision=0.001 :
dReal(v.4.21.06.2) returns
unsat
. but I think this formula is sat when x = 3, s1 = 2 , s2 = 4, y = 4, z = 0.643501109.(setup : Ubuntu 18.04)
I have seen this happen with unbound value of arctan2's denominator.
The text was updated successfully, but these errors were encountered: