feat(Boole): nat/pos as first-class types with UF+axiom SMT encoding - #10
Merged
Merged
Conversation
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.
Adds nat as a built-in Boole type. No imports or declarations required — every #strata program Boole; block has it in scope automatically.
The binary-nat algebraic datatype (pos with constructors xH/xO/xI, nat with N0/Npos) is emitted as SMT declare-datatypes with a recursive pos.toInt definition and bridge axioms (nat_nonneg, nat_fromInt_toInt, nat_toInt_fromInt). The library is injected automatically when coreProgUsesNatOrPos detects nat or pos anywhere in the program — procedure headers, spec clauses, ite conditions, loop invariants, quantifier bodies, or algebraic datatype constructor fields.
Nat operations (nat_toInt, nat_fromInt, nat_add, nat_sub, nat_mul, nat_div, nat_mod, nat_lt, nat_le, nat_gt, nat_ge) are available as surface-syntax operators in all Boole programs.
Counterexample support: when cvc5 returns a candidate model for a failing nat property, the natCandidatePhase validates and promotes it to ❌ fail. Binary pos/nat constructor terms in the model are decoded back to integers for display.
Depends on strata-org/Strata#1439 (bumped in this PR).
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.