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
Symbiotic reports false(def-behavior) for this program
false(def-behavior)
int main() { int array1[1]; int count; for(count=0;count<1;count++) { array1[count] = 0; } }
The command: symbiotic/bin/symbiotic --sv-comp --prp undefined --save-files --no-slice program.c Symbiotic version: SV-COMP 2022 (the official archive)
symbiotic/bin/symbiotic --sv-comp --prp undefined --save-files --no-slice program.c
The text was updated successfully, but these errors were encountered:
This program probably triggers the same bug - undefined behavior is reported.
undefined
int main() { int c = 0; int arr[1]; arr[c] = 42; return 0; }
Sorry, something went wrong.
No branches or pull requests
Symbiotic reports
false(def-behavior)
for this programThe command:
symbiotic/bin/symbiotic --sv-comp --prp undefined --save-files --no-slice program.c
Symbiotic version: SV-COMP 2022 (the official archive)
The text was updated successfully, but these errors were encountered: