Commit 2025-05-13 11:52 bd0ad4b2
View on Github →feat: fun_prop for ContDiff (#24056)
Marks ContDiff/At/On/WithinAt
with fun_prop
and reformulates certain theorems such they work better with fun_prop
. In particular
_id
and_comp
without usingid
andFunction.comp
. It works with the normal versions but it fails once you start usingfun_prop
as discharger insimp
assimp
runs in reducible transparency and can't see throughid
andFunction.comp
as they aredef
- Theorems like
ContDiff.fderiv
are formulated withm=n+1
.fun_prop
can't handle the metavariable?m
when applying such theorem. The reformulation of the theorem just bumps the differentiability by one and the final differentiability is resolved withContDiff.of_le
.