-
Notifications
You must be signed in to change notification settings - Fork 112
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 options to detect brittleness across multiple runs and portfolio results. #790
base: master
Are you sure you want to change the base?
Conversation
/randomizeVcIterations was no longer working correctly, should be fixed. /portfolioVcIterations should also work when there are errors in a split. However, it still does not fully handle errors.
What is the motivation for |
With Batches run sequentially in order to have determinism. Iterations in a batch can run concurrently. I am planning to extend the PR description, and the PR itself still needs some work (brittleness analysis parameters are currently hard-coded). Any feedback would be very welcome! The current implemented definition of brittle is:
In both cases the split is still verified, but a brittleness warning is printed. |
Use-case examples:
It should be noted that iterations from different splits can still run concurrently in either case. |
I thought brittleness analysis is already implemented via |
I understand now what you mean, and I agree that batching is perhaps unnecessary. My initial motivation was that batching would make it possible to execute iterations inside a batch concurrently, but iterations from different splits can already be interleaved. For brittleness analysis, I think one extra capability When using This PR also adds some code for doing a brittleness analysis within Boogie (i.e., not just outputting results from every iteration). Currently this is only done when using Maybe it is cleaner to remove batching altogether and to only keep the portfolio code. The analysis from the previous paragraph could be done when using |
It would be better to remove batching and add the brittleness analysis to |
(Detailed description to be added.)
Adds two main options:
Also adds an analysis to detect brittleness among iterations in executed batches, and reports these as warnings.