Skip to content

Commit 144ec59

Browse files
committed
fix some errors + push for cache
1 parent 4f23ab1 commit 144ec59

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Mathlib/Topology/OpenPartialHomeomorph/Composition.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected def trans' (h : e.target = e'.source) : OpenPartialHomeomorph X Z wher
4343
open_source := e.open_source
4444
open_target := e'.open_target
4545
continuousOn_toFun := e'.continuousOn.comp e.continuousOn <| h ▸ e.mapsTo
46-
continuousOn_invFun := e.continuousOn_symm.comp e'.continuousOn_symm <| h.symm ▸ e'.symm_mapsTo
46+
continuousOn_invFun := e.continuousOn_symm.comp e'.continuousOn_symm <| h.symm ▸ e'.mapsTo_symm
4747

4848
/-- Composing two open partial homeomorphisms, by restricting to the maximal domain where their
4949
composition is well defined.

Mathlib/Topology/OpenPartialHomeomorph/Constructions.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def disjointUnion (e e' : OpenPartialHomeomorph X Y) [∀ x, Decidable (x ∈ e.
201201
(by rw [e.open_source.inter_frontier_eq, (Hs.symm.frontier_right e'.open_source).inter_eq])
202202
(by
203203
rw [e.open_source.inter_frontier_eq]
204-
exact eqOn_empty _ _)).replaceEquiv
204+
exact eqOn_empty _ _)).replacePartialEquiv
205205
(e.toPartialEquiv.disjointUnion e'.toPartialEquiv Hs Ht)
206206
(PartialEquiv.disjointUnion_eq_piecewise _ _ _ _).symm
207207

Mathlib/Topology/OpenPartialHomeomorph/Defs.lean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ protected theorem continuousOn : ContinuousOn e e.source :=
9898
theorem continuousOn_symm : ContinuousOn e.symm e.target :=
9999
e.continuousOn_invFun
100100

101+
@[simp, mfld_simps]
101102
theorem mk_coe (e : PartialEquiv X Y) (h1 h2 h3 h4) :
102103
(OpenPartialHomeomorph.mk e h1 h2 h3 h4 : X → Y) = e :=
103104
rfl

0 commit comments

Comments
 (0)