-
Notifications
You must be signed in to change notification settings - Fork 273
Scripted parallel property checking using CBMC #6895
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
Scripted parallel property checking using CBMC #6895
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #6895 +/- ##
===========================================
+ Coverage 77.81% 77.82% +0.01%
===========================================
Files 1568 1568
Lines 179975 180004 +29
===========================================
+ Hits 140044 140092 +48
+ Misses 39931 39912 -19
Continue to review full report at Codecov.
|
Can we get a bit of documentation on this? Like, what is it and how do I use it? I'm asking because the |
Agree with fotis. At the very least can we get a descriptive header comment in the file explaining what it is an how to use it. |
Adds a (Python) script to check all properties contained in a given GOTO binary individually, but in parallel. This can yield a somewhat different user experience in that some of the results become available early on while other properties are still being checked for, as opposed to the all-or-nothing experience when doing all properties at once.
70cba81
to
c45eead
Compare
@NlightNFotis @jimgrundy I have now added documentation at the top of the file, and am also including this in the |
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.
Thank you. That already looks great!
On a separate note, the functionality this implements looks like a great fit for internal functionality. Is this a stand-in for that, or do we plan to rely on this script to provide this functionality?
Building that into the tool (and thereby reducing the overhead) is on the agenda :-) |
Adds a (Python) script to check all properties contained in a given GOTO
binary individually, but in parallel. This can yield a somewhat
different user experience in that some of the results become available
early on while other properties are still being checked for, as opposed
to the all-or-nothing experience when doing all properties at once.