Skip to content

Commit 66c8731

Browse files
committed
Add test case to fun_prop
1 parent 6ef8cc2 commit 66c8731

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

MathlibTest/fun_prop2.lean

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import Mathlib.Analysis.Calculus.ContDiff.Basic
22
import Mathlib.Analysis.SpecialFunctions.Log.Deriv
33
import Mathlib.MeasureTheory.MeasurableSpace.Basic
4-
54
import Mathlib.MeasureTheory.Measure.Haar.OfBasis
65
import Mathlib.MeasureTheory.Function.StronglyMeasurable.AEStronglyMeasurable
7-
6+
import Mathlib.Analysis.Complex.Trigonometric
7+
import Mathlib.Analysis.Meromorphic.Basic
8+
import Mathlib.Analysis.SpecialFunctions.Trigonometric.DerivHyp
89

910
noncomputable
1011
def foo (x : ℝ) := x * (Real.log x) ^ 2 - Real.exp x / x
@@ -75,6 +76,11 @@ example : AEMeasurable T := by
7576
unfold T S
7677
fun_prop
7778

79+
example (z : ℂ) : MeromorphicAt (fun t ↦ Complex.cosh t) z := by
80+
fun_prop
81+
82+
example (z : ℂ) : MeromorphicAt (fun t ↦ Complex.cosh (2 * t)) z := by
83+
fun_prop
7884

7985
private theorem t1 : (5: ℕ) + (1 : ℕ∞) ≤ (12 : WithTop ℕ∞) := by norm_cast
8086

0 commit comments

Comments
 (0)