-
Notifications
You must be signed in to change notification settings - Fork 108
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
refactor: implement BinaryHeap
using Vector
#850
Merged
fgdorais
merged 9 commits into
leanprover-community:main
from
fgdorais:update-binaryheap
Nov 11, 2024
Merged
refactor: implement BinaryHeap
using Vector
#850
fgdorais
merged 9 commits into
leanprover-community:main
from
fgdorais:update-binaryheap
Nov 11, 2024
Conversation
This file contains 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
fgdorais
force-pushed
the
update-binaryheap
branch
2 times, most recently
from
June 17, 2024 10:54
46d62e2
to
bc3b9cf
Compare
fgdorais
changed the title
feat: implement BinaryHeap using Vector
refactor: implement Jun 17, 2024
BinaryHeap
using Vector
fgdorais
force-pushed
the
update-binaryheap
branch
from
June 17, 2024 11:18
40cc54e
to
cf7bcef
Compare
digama0
reviewed
Jun 17, 2024
leanprover-community-mathlib4-bot
added
the
merge-conflict
This PR has merge conflicts with the `main` branch which must be resolved by the author.
label
Jun 17, 2024
fgdorais
force-pushed
the
update-binaryheap
branch
from
June 18, 2024 00:15
cf7bcef
to
9dd34e3
Compare
leanprover-community-mathlib4-bot
removed
the
merge-conflict
This PR has merge conflicts with the `main` branch which must be resolved by the author.
label
Jun 18, 2024
fgdorais
force-pushed
the
update-binaryheap
branch
from
June 18, 2024 00:36
949969a
to
635faae
Compare
digama0
reviewed
Jun 18, 2024
Co-authored-by: Mario Carneiro <di.gama@gmail.com>
Co-authored-by: Mario Carneiro <di.gama@gmail.com>
fgdorais
force-pushed
the
update-binaryheap
branch
from
July 19, 2024 15:14
7bcfd23
to
0ab5b1a
Compare
leanprover-community-mathlib4-bot
added
the
merge-conflict
This PR has merge conflicts with the `main` branch which must be resolved by the author.
label
Aug 16, 2024
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Oct 1, 2024
fgdorais
added
awaiting-review
This PR is ready for review; the author thinks it is ready to be merged.
and removed
WIP
work in progress
labels
Oct 1, 2024
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Oct 1, 2024
Mathlib CI status (docs):
|
leanprover-community-mathlib4-bot
removed
the
merge-conflict
This PR has merge conflicts with the `main` branch which must be resolved by the author.
label
Oct 1, 2024
leanprover-community-bot
added
breaks-mathlib
builds-mathlib
and removed
breaks-mathlib
labels
Oct 1, 2024
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Oct 28, 2024
github-merge-queue
bot
removed this pull request from the merge queue due to failed status checks
Nov 11, 2024
fgdorais
force-pushed
the
update-binaryheap
branch
from
November 11, 2024 08:14
5a45f90
to
5b12e9f
Compare
leanprover-community-mathlib4-bot
added a commit
to leanprover-community/mathlib4
that referenced
this pull request
Nov 11, 2024
Merged
via the queue into
leanprover-community:main
with commit Nov 11, 2024
1bfaec4
2 checks passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
awaiting-review
This PR is ready for review; the author thinks it is ready to be merged.
builds-mathlib
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 is a follow-up to #849 which uses #793 to simplify major parts of the code, paving the way toward correctness proofs for
BinaryHeap
.BinaryHeap
#849