-
Notifications
You must be signed in to change notification settings - Fork 4
feat(symbolic): add spl-token lemma for inner_test_validate_owner #1010
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
Closed
Stevengre
wants to merge
17
commits into
feature/p-token
from
mk/lemmas-inner_test_validate_owner-spl
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
fcb6be9
Lemmas for inner_test_validate_owner (and expected_validate_owner_res…
mariaKt 57e8638
Removed unneeded import.
mariaKt 7fa3b00
Renamed modules.
mariaKt 77d8083
Improved error messages.
mariaKt f70f025
`volatile_{load,store}` with statics. Heap allocations. And transmuti…
dkcumming f0257bc
perf(test): remove redundant integration test executions (#972)
Stevengre b694d02
Basic support for floats (`f16`, `f32`, `f64`, `f128`) (#995)
dkcumming 386e453
Updated lemmas for new version of semantics and tests.
mariaKt 4983792
Removed hard-coded tx signers list and rules, rules to heat-cool List…
mariaKt 92056cd
cleanup(rt): remove redundant #forceSetLocal (#810)
Stevengre 5653ced
Documentation and renaming.
mariaKt 518ed56
Commenting out lemmas for default.
mariaKt eafe909
fix(types): make #pointeeProjection confluent with source-first unwra…
Stevengre 9af0261
fix(rt): handle zero-sized function types in decode and ZST recogniti…
Stevengre 633d264
Merge origin/master
Stevengre 9cf550a
Merge remote-tracking branch 'origin/mk/lemmas-inner_test_validate_ow…
Stevengre 2fc994b
feat(symbolic): add spl-token lemma for inner_test_validate_owner
Stevengre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Rust
ascasts from float to int are saturating for NaN/out-of-range inputs, but this rule usesFloat2Intfollowed by integer truncation, which models truncation/wrapping behavior instead of saturation. Programs such asf32::INFINITY as i32orNaN as u8will be mis-modeled, producing incorrect proof outcomes around numeric bounds.Useful? React with 👍 / 👎.