-
Notifications
You must be signed in to change notification settings - Fork 368
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] - refactor(LinearAlgebra/SesquilinearForm): Sesquilinear Maps #9312
Conversation
!bench |
Here are the benchmark results for commit ee51205. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just have a few cosmetic changes, but otherwise it looks good!
Also, I think it might be worth changing the name of the file to |
Co-authored-by: Frédéric Dupuis <[email protected]>
Co-authored-by: Frédéric Dupuis <[email protected]>
Yes, my plan was to get this PR and #9334 merged and then do a separate PR renaming both files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, looks good! Thanks! Just two minigolfs, mainly to make you aware of cool new syntax in Lean 4.
bors d+
✌️ mans0954 can now approve this pull request. To approve and merge a pull request, simply reply with |
Co-authored-by: Jireh Loreaux <[email protected]>
Co-authored-by: Jireh Loreaux <[email protected]>
bors r+ |
Some of the concepts in `LinearAlgebra/SesquilinearForm` can be generalised from Sesquilinear Forms to Sesquilinear Maps with little or no impact on the rest of Mathlib. This PR makes those generalisations. Further generalisations are likely possible, but the scope of this PR is to only consider changes which do not require non-trivial modifications to other parts of Mathlib, or other sections in `SesquilinearForm.lean`. Further changes can be considered in subsequent PRs if desired. Co-authored-by: Christopher Hoskin <[email protected]>
Pull request successfully merged into master. Build succeeded: |
Some of the concepts in `LinearAlgebra/SesquilinearForm` can be generalised from Sesquilinear Forms to Sesquilinear Maps with little or no impact on the rest of Mathlib. This PR makes those generalisations. Further generalisations are likely possible, but the scope of this PR is to only consider changes which do not require non-trivial modifications to other parts of Mathlib, or other sections in `SesquilinearForm.lean`. Further changes can be considered in subsequent PRs if desired. Co-authored-by: Christopher Hoskin <[email protected]>
Some of the concepts in
LinearAlgebra/SesquilinearForm
can be generalised from Sesquilinear Forms to Sesquilinear Maps with little or no impact on the rest of Mathlib. This PR makes those generalisations.Further generalisations are likely possible, but the scope of this PR is to only consider changes which do not require non-trivial modifications to other parts of Mathlib, or other sections in
SesquilinearForm.lean
. Further changes can be considered in subsequent PRs if desired.See also #9334