-
Notifications
You must be signed in to change notification settings - Fork 274
Add --nondet-static-matching regex option #7389
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
Add --nondet-static-matching regex option #7389
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Model transformation really should not go into the CBMC binary -- this needs to go into goto-instrument. We want to remove --nondet-static
.
Codecov ReportBase: 78.49% // Head: 78.49% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## develop #7389 +/- ##
========================================
Coverage 78.49% 78.49%
========================================
Files 1663 1663
Lines 191339 191360 +21
========================================
+ Hits 150185 150204 +19
- Misses 41154 41156 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Alright, agreed. |
bee1b9c
to
011937c
Compare
Adds a more general mechanism for selecting which static variables should be initialized nondeterministically. The regex matches the string consisting of the filename and the variable display name separated by a colon, e.g. "main.c:x".
011937c
to
1c5a0b7
Compare
1c5a0b7
to
2dda8de
Compare
09e3c30
to
2dda8de
Compare
2dda8de
to
22152fc
Compare
Adds a more general mechanism for selecting which static variables should be initialized nondeterministically.
The regex matches the string consisting of the filename and the variable display name separated by a colon, e.g. "main.c:x", a format that is already used by the
nondet_static(goto_model, except_values)
variant.