Commit 2020-01-08 13:16 92841c2e
View on Github →refactor(analysis/asymptotics): introduce is_O_with (#1857)
- refactor(analysis/asymptotics): introduce is_O_withI use it to factor out common parts of the proofs of facts aboutis_Oandis_o. It can also be used withprincipal sfilter to operate with∀ x ∈ s, ∥f x∥ ≤ C * ∥g x∥is a manner similar tois_O.
- lint
- Fix compile
- Drop (s)mul_samelemmas. It's easy to use(s)mul_is_O (is_O_refl _ _)or(is_O_refl _ _).mul_is_o _instead
- docs: say explicitly that is_Ois better thanis_O_with