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
Overhaul the partial equivalence mode to account for pointers.
a == b
*a == *b
a[x] == b[x] where x = range(len(a)) and len(a) == len(b)
The following proposal can be implemented using an ESBMC C Script (with the ClangAST backend and ESBMCCodeGenerator).
There are limitations to checking arrays all using this same method.
For more information, see this wiki page.
The text was updated successfully, but these errors were encountered:
OCM is planned to be removed from master pending more research. This was ambitious, perhaps, too ambitious.
master
Sorry, something went wrong.
No branches or pull requests
Overhaul the partial equivalence mode to account for pointers.
a == b
*a == *b
.a[x] == b[x] where x = range(len(a)) and len(a) == len(b)
The following proposal can be implemented using an ESBMC C Script (with the ClangAST backend and ESBMCCodeGenerator).
There are limitations to checking arrays all using this same method.
For more information, see this wiki page.
The text was updated successfully, but these errors were encountered: