-
Notifications
You must be signed in to change notification settings - Fork 608
feat: polymorphic ranges #8784
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
Open
datokrat
wants to merge
45
commits into
paul/base/ranges/introduce-ranges
Choose a base branch
from
paul/ranges/introduce-ranges
base: paul/base/ranges/introduce-ranges
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: polymorphic ranges #8784
datokrat
wants to merge
45
commits into
paul/base/ranges/introduce-ranges
from
paul/ranges/introduce-ranges
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
17a7c4a
to
23b9390
Compare
b3e6ea4
to
6b335e6
Compare
23b9390
to
0c96c36
Compare
Collaborator
leanprover-community-bot
commented
Jun 23, 2025
•
Loading
edited
Uh oh!
There was an error while loading. < 8000 a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page.
Mathlib CI status (docs):
|
6b335e6
to
db499e9
Compare
2ce1833
to
5fe9499
Compare
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/batteries
that referenced
this pull request
Jun 23, 2025
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Jun 23, 2025
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/batteries
that referenced
this pull request
Jun 23, 2025
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Jun 23, 2025
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/batteries
that referenced
this pull request
Jun 23, 2025
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Jun 23, 2025
… interpreted as .. and .
range notation with two dots conflicts with ellipses in object notation ("{ abc.. }").
15482bc
to
7ee86a1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
builds-mathlib
CI has verified that Mathlib builds against this PR
changelog-library
Library
toolchain-available
A toolchain is available for this PR, at leanprover/lean4-pr-releases:pr-release-NNNN
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 introduces ranges that are polymorphic, in contrast to the existing
Std.Range
which only supports natural numbers.Breakdown of core changes:
Lean.Parser.Basic
: Modified the number parser (Lean.Parser.Basic
) so that it will only consider a single dot to be part of a decimal number.1..
will no longer be parsed as1.
followed by.
, but as1
followed by..
.ellipsisProjIssue
ensures that#check Nat.add ...succ
produces a syntax error. After introducing the new range notation (see below), it returns a different (less nice) error message. I updated the test to reflect the new error message. (The error message will become nicer as soon as a delaborator for the ranges is implemented. This is out of scope for this PR.)Breakdown of standard library changes:
Modified modules:
Init.Data.Range.Polymorphic
(added),Init.Data.Iterators
,Std.Data.Iterators
Std.PRange
that is parameterized over the type in which the range operates and the shapes of the lower and upper bound.1...*
,1...=3
,1...<3
,1<...=2
,*...=3
.Iter(M).size
.Iter(M).stepSize n
combinator, which iterates over an iterator with the given step sizen
. It will dropn - 1
values between every value it emits.LawfulPureIterator
with a new and better typeclassLawfulDeterministicIterator
.IterM.toList_eq_match
, which unnecessarily matched over aSubtype
, hindering rewrites due to type dependencies.Reasons for the concrete choice of notation:
lean4-cli
uses...
-based notation for theCmd
notation and it clashes with...a
range notation.2461
fails when using two-dot-based notation because of the existing{ a.. }
notation.