Open
Conversation
…es, decreasing, and done_with clauses - Added optional naming syntax for all verification clauses (name: condition) - Implemented loom_rename tactic to process named goals with semantic suffixes (.entry, .loop, .exit) - Updated loom_split to extract names from WithName expressions - Added andListWithNames helper to handle named ensures/requires - Created NamedInvariants.lean as documentation and example - All naming is optional and backward compatible
Summary: Refactored BFS.lean and extended Naming.lean files to name sub-clauses in proofs to use the new loom_named_split naming scheme. Changed all case names from old naming (e.g., .loop, .exit_1) to the new phase-based naming (.entry, .loop_pos, .loop_neg, .exit). The original proofs have been preserved as comments for reference while the proof bodies have been replaced with `sorry` placeholders, allowing for iterative proof completion with the new naming convention.
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 naming conventions for Loom.
Changes in action documented in a test file here. Would be amazing to have 1 other pair of eyes to verify my meta-programming :)