[Merged by Bors] - feat(CategoryTheory/Abelian): exactness of colimits (short complex version)#21990
Closed
[Merged by Bors] - feat(CategoryTheory/Abelian): exactness of colimits (short complex version)#21990
Conversation
11 tasks
…map-short-complex
PR summary 88d0941b5bImport changes exceeding 2%
|
| File | Base Count | Head Count | Change |
|---|---|---|---|
| Mathlib.CategoryTheory.Abelian.GrothendieckAxioms.Colim | 601 | 945 | +344 (+57.24%) |
Import changes for all files
| Files | Import difference |
|---|---|
Mathlib.CategoryTheory.Abelian.GrothendieckAxioms.Colim |
344 |
Declarations diff
+ colim.exact_mapShortComplex
+ colim.mapShortComplex
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>The doc-module for script/declarations_diff.sh contains some details about this script.
No changes to technical debt.
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relativevalue is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolutevalue is therelativevalue divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
TwoFX
reviewed
Feb 17, 2025
|
|
||
| namespace CategoryTheory.Limits | ||
|
|
||
| variable {C : Type u} [Category.{v} C] [Abelian C] |
Member
There was a problem hiding this comment.
I think the entire file isn't really about abelian categories at all, the Abelian C can be replaced by HasZeroMorphisms C. So I think it makes sense to move the file to GrothendieckAxioms instead of GrothendieckCategory and generalize the typeclass assumption.
Contributor
Author
There was a problem hiding this comment.
Thanks for the suggestion, I have moved the code into GrothendieckAxioms.Colim with a HasZeroMorphisms assumption.
Co-authored-by: Markus Himmel <markus@himmel-villmar.de>
mathlib-bors bot
pushed a commit
that referenced
this pull request
Feb 17, 2025
…rsion) (#21990) Assuming `HasExactColimitsOfShape J C`, we rephrase the exactness of `colim : (J ⥤ C) ⥤ C` by saying that if `S : ShortComplex (J ⥤ C)` is exact, and we have colimit cocones `c₁`, `c₂`, `c₃` for `S.X₁`, `S.X₂` and `S.X₃`, then the induced short complex `c₁.pt ⟶ c₂.pt ⟶ c₃.pt` is exact. Co-authored-by: Joël Riou <37772949+joelriou@users.noreply.github.com>
Contributor
|
Pull request successfully merged into master. Build succeeded: |
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.
Assuming
HasExactColimitsOfShape J C, we rephrase the exactness ofcolim : (J ⥤ C) ⥤ Cby saying that ifS : ShortComplex (J ⥤ C)is exact, and we have colimit coconesc₁,c₂,c₃forS.X₁,S.X₂andS.X₃, then the induced short complexc₁.pt ⟶ c₂.pt ⟶ c₃.ptis exact.