-
Notifications
You must be signed in to change notification settings - Fork 760
feat(Algebra/Module): presentation of the PiTensorProduct
#26465
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
base: master
Are you sure you want to change the base?
feat(Algebra/Module): presentation of the PiTensorProduct
#26465
Conversation
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…nto unbundled-module-presentation-more-api
…nto unbundled-module-presentation-more-api
…nite' into unbundled-module-presentation-tensor
…r-algebra-pi-tensor-product-generators
…roduct-generators
…-generators' into unbundled-module-presentation-pi-tensor
…roduct-generators
…roduct-generators
…ensor-product-generators
Comments from Original PR #18527This section contains 1 comment(s) from the original PR, excluding bot comments. @github-actions (2024-11-01 16:05 UTC): PR summary 69d7fa46b0
|
Files | Import difference |
---|---|
Mathlib.LinearAlgebra.PiTensorProduct |
-879 |
Mathlib.LinearAlgebra.PiTensorProduct.Basic |
879 |
Mathlib.LinearAlgebra.PiTensorProduct.Generators (new file) |
956 |
Mathlib.LinearAlgebra.PiTensorProduct.Finite (new file) |
958 |
Mathlib.Algebra.Module.Presentation.PiTensor (new file) |
1000 |
Declarations diff
+ Nat.card_compl_add_card
+ Nat.card_singleton_compl
+ Presentation.piTensor
+ _root_.MultilinearMap.ext_of_span_eq_top
+ embedding
+ embedding_apply_of_neq
+ embedding_apply_self
+ eq_presInd_var
+ equivTensorPiTensorComplSingleton
+ equivTensorPiTensorComplSingleton_symm_tmul
+ equivTensorPiTensorComplSingleton_tprod
+ ext_of_span_eq_top
+ extendCompSingleton_restriction
+ extendComplSingleton
+ extendComplSingleton_of_neq
+ extendComplSingleton_self
+ finite
+ isPresentationCore_induction_step
+ isPresentation_induction_step
+ isPresentation_of_isEmpty
+ presInd
+ presInd_var
+ submodule_span_eq_top
+ sumSingletonComplEquiv
+ sumSingletonComplEquiv_inl
+ sumSingletonComplEquiv_inr
+++ piTensor
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.
Increase in tech debt: (relative, absolute) = (7.00, 0.01)
Current number | Change | Type |
---|---|---|
915 | 7 | erw |
Current commit 69d7fa46b0
Reference commit 4a5bed5fc9
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relative
value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolute
value is therelative
value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
PR summary 501992c195
|
Files | Import difference |
---|---|
Mathlib.LinearAlgebra.PiTensorProduct |
-894 |
Mathlib.Data.Set.ComplSingletonLift (new file) |
143 |
Mathlib.LinearAlgebra.PiTensorProduct.Basic |
894 |
Mathlib.LinearAlgebra.PiTensorProduct.Generators (new file) |
971 |
Mathlib.Algebra.Module.Presentation.PiTensor (new file) |
1017 |
Mathlib.LinearAlgebra.PiTensorProduct.Finite (new file) |
1020 |
Declarations diff
+ Presentation.piTensor
+ _root_.MultilinearMap.ext_of_span_eq_top
+ card_compl_add_card
+ card_singleton_compl
+ complSingletonLift
+ complSingletonLift_of_neq
+ complSingletonLift_restriction
+ complSingletonLift_self
+ embedding
+ embedding_apply_of_neq
+ embedding_apply_self
+ eq_presInd_var
+ equivTensorPiTensorComplSingleton
+ equivTensorPiTensorComplSingleton_symm_tmul
+ equivTensorPiTensorComplSingleton_tprod
+ ext_of_span_eq_top
+ finite
+ isPresentationCore_induction_step
+ isPresentation_induction_step
+ isPresentation_of_isEmpty
+ presInd
+ presInd_var
+ submodule_span_eq_top
+ sumSingletonComplEquiv
+ sumSingletonComplEquiv_inl
+ sumSingletonComplEquiv_inr
+++ piTensor
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.
Increase in tech debt: (relative, absolute) = (5.00, 0.01)
Current number | Change | Type |
---|---|---|
843 | 5 | erw |
Current commit 90465826b7
Reference commit 501992c195
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relative
value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolute
value is therelative
value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
note: file Mathlib/LinearAlgebra/PiTensorProduct.lean` was renamed to `Mathlib/LinearAlgebra/PiTensorProduct/Basic.lean
without a module deprecation
Please create a follow-up pull request adding one. Thanks!
This PR/issue depends on:
|
This pull request has conflicts, please merge |
Given a presentation of a finite number of
R
-modulesM i
, we obtain a presentation of the module⨂[R] i, M i
.This PR continues the work from #18527.
Original PR: #18527