[Merged by Bors] - feat(Topology/Algebra/Module): call eta_expand in the default tactic of ContinuousLinearEquiv#39766
Closed
gasparattila wants to merge 3 commits into
Closed
Conversation
…c of `ContinuousLinearEquiv` This PR adds a call to `eta_expand` in the default tactic for the fields of `ContinuousLinearEquiv`, so that `dsimp` can also use lemmas written in applied form. Most of the proofs which are solved by this default tactic are also removed. A `skip` is also added to show the goal instead of "`dsimp` made no progress" when this default tactic fails.
PR summary 37b2c8b8a6Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
themathqueen
approved these changes
May 24, 2026
themathqueen
left a comment
Collaborator
There was a problem hiding this comment.
Can you say how this matches ContinuousLinearMap and Homeomorph in the description?
Thanks!
maintainer merge
|
🚀 Pull request has been placed on the maintainer queue by themathqueen. |
| exact ⟨(φ '' U, V), ⟨hU.image φ, hV⟩, fun g hg ↦ hg.comp (mapsTo_image _ _)⟩ } | ||
|
|
||
| @[fun_prop] | ||
| theorem continuous_compContinuousLinearMap_left (f : ∀ i, E i →L[𝕜] E₁ i) : |
Collaborator
There was a problem hiding this comment.
actually, instead of _left maybe _precomp or _postcomp (I forget which is which)?
Co-authored-by: Monica Omar <23701951+themathqueen@users.noreply.github.com>
Contributor
|
thanks bors r+ |
mathlib-bors Bot
pushed a commit
that referenced
this pull request
May 25, 2026
…c of `ContinuousLinearEquiv` (#39766) This PR adds a call to `eta_expand` in the default tactic for the fields of `ContinuousLinearEquiv`, so that `dsimp` can also use lemmas written in applied form. This is the same default tactic that is already used for `Homeomorph` and `ContinuousLinearMap`. Most of the proofs which are solved by this default tactic are also removed. A `skip` is also added to show the goal instead of "`dsimp` made no progress" when this default tactic fails.
Contributor
|
Pull request successfully merged into master. Build succeeded: |
eta_expand in the default tactic of ContinuousLinearEquiveta_expand in the default tactic of ContinuousLinearEquiv
b-mehta
pushed a commit
to b-mehta/mathlib4
that referenced
this pull request
Jun 2, 2026
…c of `ContinuousLinearEquiv` (leanprover-community#39766) This PR adds a call to `eta_expand` in the default tactic for the fields of `ContinuousLinearEquiv`, so that `dsimp` can also use lemmas written in applied form. This is the same default tactic that is already used for `Homeomorph` and `ContinuousLinearMap`. Most of the proofs which are solved by this default tactic are also removed. A `skip` is also added to show the goal instead of "`dsimp` made no progress" when this default tactic fails.
Bergschaf
pushed a commit
to Bergschaf/mathlib4
that referenced
this pull request
Jun 3, 2026
…c of `ContinuousLinearEquiv` (leanprover-community#39766) This PR adds a call to `eta_expand` in the default tactic for the fields of `ContinuousLinearEquiv`, so that `dsimp` can also use lemmas written in applied form. This is the same default tactic that is already used for `Homeomorph` and `ContinuousLinearMap`. Most of the proofs which are solved by this default tactic are also removed. A `skip` is also added to show the goal instead of "`dsimp` made no progress" when this default tactic fails.
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.
This PR adds a call to
eta_expandin the default tactic for the fields ofContinuousLinearEquiv, so thatdsimpcan also use lemmas written in applied form. This is the same default tactic that is already used forHomeomorphandContinuousLinearMap. Most of the proofs which are solved by this default tactic are also removed.A
skipis also added to show the goal instead of "dsimpmade no progress" when this default tactic fails.