Update to latest Verus (2026-08-23) - #58
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR refactors the proof obligations around untrusted_append_success to reduce verification timeouts by separating “data write” state from “header update” state and adding intermediate lemmas to bridge the two.
Changes:
- Extends
lemma_append_ib_updateto take an additionalpm_after_data_writesnapshot and rewrites its data-layout preconditions to usepm_to_views(...).2subranges. - Adds proof steps inside
lemma_append_ib_updatethat use a new, range-specificlemma_subrange_eqto transfer data subrange facts across the header update. - Captures
wrpm@aspm_after_data_writebeforeupdate_headerand updates the lemma call accordingly.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Jay Lorch (jaylorch)
marked this pull request as draft
August 24, 2026 16:59
Jay Lorch (jaylorch)
force-pushed
the
verus-2026-08-18
branch
from
August 24, 2026 18:21
0a1c8f6 to
c63159e
Compare
untrusted_append_success
Jay Lorch (jaylorch)
marked this pull request as ready for review
August 24, 2026 18:23
Hayley LeBlanc (hayley-leblanc)
approved these changes
Aug 25, 2026
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
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.
This PR updates the projects to use the latest Verus.
The most significant change is because I noticed the nightly run of verita was flagging
untrusted_append_successas failing due to timeout. So I enlisted the aid of GPT-5.6 Sol to make that lemma more robust.