Skip to content

Commit 0baa635

Browse files
committed
chore: deprime FiberBundle.contMDiffAt_extend' (leanprover-community#41175)
The original name was primed to avoid ambiguity with `contMDiffAt_extend`: a previous PR moved this under the `OpenPartialHomeomorph` namespace, so this ambiguity is no longer present.
1 parent b122ba8 commit 0baa635

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Mathlib/Geometry/Manifold/VectorBundle/MDifferentiable.lean

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -687,8 +687,7 @@ lemma exists_contMDiffOn_extend [(x : M) → Module 𝕜 (V x)] [VectorBundle
687687
have : CMDiff[t.baseSet] k (fun (_x : M) ↦ w) := contMDiffOn_const
688688
exact this.congr (fun x hx ↦ by simp [extend, t, w, hx])
689689

690-
lemma contMDiffAt_extend' {x : M} (σ₀ : V x) :
691-
CMDiffAt k (T% (extend F σ₀)) x := by
690+
lemma contMDiffAt_extend {x : M} (σ₀ : V x) : CMDiffAt k (T% (extend F σ₀)) x := by
692691
rw [contMDiffAt_section]
693692
set t := trivializationAt F V x
694693
let w : F := (t ⟨x, σ₀⟩).2
@@ -700,6 +699,8 @@ lemma contMDiffAt_extend' {x : M} (σ₀ : V x) :
700699
simp [extend, t, hx, w]
701700
· exact FiberBundle.mem_baseSet_trivializationAt' x
702701

702+
@[deprecated (since := "2026-06-30")] alias contMDiffAt_extend' := contMDiffAt_extend
703+
703704
lemma exists_mdifferentiableOn_extend [∀ x, Module 𝕜 (V x)] [VectorBundle 𝕜 F V]
704705
[ContMDiffVectorBundle 1 F V I] {x₀ : M} (σ₀ : V x₀) :
705706
∃ s ∈ 𝓝 x₀, MDiff[s] (T% (extend F σ₀)) := by
@@ -708,7 +709,7 @@ lemma exists_mdifferentiableOn_extend [∀ x, Module 𝕜 (V x)] [VectorBundle
708709

709710
lemma mdifferentiableAt_extend {x : M} (σ₀ : V x) :
710711
MDiffAt (T% (extend F σ₀)) x :=
711-
(contMDiffAt_extend' (k := 1) I F σ₀).mdifferentiableAt one_ne_zero
712+
(contMDiffAt_extend (k := 1) I F σ₀).mdifferentiableAt one_ne_zero
712713

713714
variable (V) in
714715
lemma _root_.VectorBundle.injective_eval_mdifferentiableAt_sec [∀ x, Module 𝕜 (V x)]
@@ -728,7 +729,7 @@ lemma _root_.VectorBundle.injective_eval_contMDiffAt_sec {n : WithTop ℕ∞} [
728729
fun (Z : Π x, V x) (_ : CMDiffAt n (T% Z) x) ↦ A (Z x)) := by
729730
intro X X' h
730731
ext σ₀
731-
simpa using congr($h (extend F σ₀) (contMDiffAt_extend' ..))
732+
simpa using congr($h (extend F σ₀) (contMDiffAt_extend ..))
732733

733734
end FiberBundle
734735
end extend

0 commit comments

Comments
 (0)