-
Notifications
You must be signed in to change notification settings - Fork 92
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
Do not override std
library during playback
#2852
Merged
celinval
merged 4 commits into
model-checking:main
from
celinval:issue-2850-playback-print
Nov 2, 2023
Merged
Do not override std
library during playback
#2852
celinval
merged 4 commits into
model-checking:main
from
celinval:issue-2850-playback-print
Nov 2, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adpaco-aws
reviewed
Nov 2, 2023
zhassan-aws
approved these changes
Nov 2, 2023
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.
Thanks
Co-authored-by: Adrian Palacios <73246657+adpaco-aws@users.noreply.github.com>
celinval
commented
Nov 2, 2023
jaisnan
added a commit
that referenced
this pull request
Nov 17, 2023
Upgrade version number to 0.41.0 The CHANGELOG changes are: ``` # What's Changed * Fix setup for `aarch64-unknown-linux-gnu` platform by @adpaco-aws in #2864 * Do not override `std` library during playback by @celinval in #2852 * Fix docker build step in release workflow by @adpaco-aws in #2854 * Fix path-dependent failures in `assess-artifacts` test by @adpaco-aws in #2849 * Automatic toolchain upgrade to nightly-2023-11-11 by @github-actions in #2870 **Full Changelog**: kani-0.40.0...kani-0.41.0 ### Breaking Changes * Set minimum python to 3.7 in docker container and release action by @remi-delmas-3000 in #2879 * Delete `any_slice` which has been deprecated since Kani 0.38.0. by @zhassan-aws in #2860 ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We override a few std functions to improve verification time or verification results, however, those functions are quite helpful during concrete execution. Thus, avoid overriding functions when executing concrete playback.
Resolves #2850
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.