-
Notifications
You must be signed in to change notification settings - Fork 381
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
[Merged by Bors] - feat(CategoryTheory): the monoidal category structure on graded objects #14457
Conversation
PR summary 779ef7d15f
|
File | Base Count | Head Count | Change |
---|---|---|---|
Mathlib.CategoryTheory.GradedObject.Monoidal | 453 | 528 | +75 (+16.56%) |
Import changes for all files
Files | Import difference |
---|---|
Mathlib.CategoryTheory.GradedObject.Monoidal |
75 |
Declarations diff
+ instance (F : C ⥤ D) (J : Type*) [Finite J] [PreservesFiniteCoproducts F] :
+ instance (n : ℕ) : Finite ((fun (i : ℕ × ℕ) => i.1 + i.2) ⁻¹' {n}) := by
+ instance (n : ℕ) : Finite ({ i : (ℕ × ℕ × ℕ) | i.1 + i.2.1 + i.2.2 = n }) := by
+ left_tensor_tensorObj₃_ext
+ monoidalCategory
+ pentagon
+ pentagon_inv
+ tensorObj₄_ext
+ whiskerLeft_whiskerLeft_associator_inv
+ ιTensorObj₄
+ ιTensorObj₄_eq
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>
This PR/issue depends on: |
Excited to see that you've finished this @joelriou, it's great! bors d+ |
✌️ joelriou can now approve this pull request. To approve and merge a pull request, simply reply with |
Thanks! bors merge |
…ts (#14457) Under suitable conditions on a monoidal category `C`, we define an instance of `MonoidalCategory (GradedObject ℕ C)`. The construction is actually more general, and it shall be used in order to get monoidal category structures on homological complexes in future PRs. Co-authored-by: Kim Morrison <[email protected]>
Pull request successfully merged into master. Build succeeded: |
In this PR, we construct the braiding for the monoidal structure on graded objects (#14457). We show it is symmetric if the original category is symmetric. Co-authored-by: Joël Riou <[email protected]>
In this PR, we construct the braiding for the monoidal structure on graded objects (#14457). We show it is symmetric if the original category is symmetric. Co-authored-by: Joël Riou <[email protected]>
In this PR, we construct the braiding for the monoidal structure on graded objects (#14457). We show it is symmetric if the original category is symmetric. Co-authored-by: Joël Riou <[email protected]>
In this PR, we construct the braiding for the monoidal structure on graded objects (#14457). We show it is symmetric if the original category is symmetric. Co-authored-by: Joël Riou <[email protected]>
Under suitable conditions on a monoidal category
C
, we define an instance ofMonoidalCategory (GradedObject ℕ C)
. The construction is actually more general, and it shall be used in order to get monoidal category structures on homological complexes in future PRs.Co-authored-by: Kim Morrison [email protected]