File tree Expand file tree Collapse file tree
Mathlib/Analysis/Meromorphic Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -269,11 +269,12 @@ theorem meromorphicOrderAt_congr (hf₁₂ : f₁ =ᶠ[𝓝[≠] x] f₂) :
269269 cases h₁f₁ : meromorphicOrderAt f₁ x with
270270 | top =>
271271 rw [meromorphicOrderAt_eq_top_iff] at h₁f₁ ⊢
272- exact EventuallyEq.rw h₁f₁ ( fun x => Eq (f₂ x)) hf₁₂.symm
272+ filter_upwards [hf₁₂, h₁f₁] using by grind
273273 | coe n =>
274274 obtain ⟨g, h₁g, h₂g, h₃g⟩ := (meromorphicOrderAt_eq_int_iff hf₁).1 h₁f₁
275275 rw [meromorphicOrderAt_eq_int_iff (hf₁.congr hf₁₂)]
276- exact ⟨g, h₁g, h₂g, EventuallyEq.rw h₃g (fun x => Eq (f₂ x)) hf₁₂.symm⟩
276+ use g, h₁g, h₂g
277+ filter_upwards [hf₁₂, h₃g] using by grind
277278
278279/-- Compatibility of notions of `order` for analytic and meromorphic functions. -/
279280lemma AnalyticAt.meromorphicOrderAt_eq (hf : AnalyticAt 𝕜 f x) :
You can’t perform that action at this time.
0 commit comments