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
Add missing analysis options in C++/Rust API:
bounds-check
pointer-check
div-by-zero-check
float-overflow-check
nan-check
undefined-shift-check
unwinding-assertions
object-bits
unwind
slice-formula
The end result should allow an API interaction that has an end outcome similar to the following cbmc binary invocation:
cbmc
cbmc --bounds-check --pointer-check --div-by-zero-check --float-overflow-check --nan-check --undefined-shift-check --unwinding-assertions --object-bits 16 --unwind 5 --slice-formula b_harness.out --json-ui
[This is to track items outlined in #7042 that are missing to make the C++ and Rust API more useful]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Add missing analysis options in C++/Rust API:
bounds-check
pointer-check
div-by-zero-check
float-overflow-check
nan-check
undefined-shift-check
unwinding-assertions
object-bits
unwind
slice-formula
The end result should allow an API interaction that has an end outcome similar to the following
cbmc
binary invocation:cbmc --bounds-check --pointer-check --div-by-zero-check --float-overflow-check --nan-check --undefined-shift-check --unwinding-assertions --object-bits 16 --unwind 5 --slice-formula b_harness.out --json-ui
Context
[This is to track items outlined in #7042 that are missing to make the C++ and Rust API more useful]
The text was updated successfully, but these errors were encountered: