Commit 2025-05-14 13:17 179655ba
View on Github ārefactor: use a junk value for the analytic order of a non-analytic function (#22974)
Currently, the order of an analytic function is called AnalyticAt.order
and has a single explicit argument hf : AnalyticAt š f zā
. This means that working with analytic functions results in contexts full of hf.order
or, worse, āÆ.order
.
This PR makes the f
and zā
arguments explicit, and drops the hf
one by introducing a junk value of 0
for non-analytic functions. The resulting function is called analyticOrderAt
and I am also adding a Nat
-valued version analyticOrderNatAt
since (analyticOrderAt f zā).toNat
was appearing in quite a few lemmas.