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
use symex_lib::{any, assume}; fn main() { let x: i128 = i128::MIN; assume(x < 0); assert_eq!(-x.abs(), x); }
This code produces Encountered an unsatisfiable assumption, ignoring this path, even though the smallest value of i128 is definitely less than zero.
Encountered an unsatisfiable assumption, ignoring this path
The text was updated successfully, but these errors were encountered:
i64 works fine, so I would assume the VM has some problem with 128 bit integers.
Sorry, something went wrong.
No branches or pull requests
This code produces
Encountered an unsatisfiable assumption, ignoring this path
, even though the smallest value of i128 is definitely less than zero.The text was updated successfully, but these errors were encountered: