Zulip Chat Archive

Stream: mathlib4

Topic: notation3 issue


Patrick Massot (Aug 31 2023 at 20:22):

Does anyone know how to fix the warning in

import Mathlib.Topology.NhdsSet

open Topology

notation3 "∀ᶠ " (...) " near "s", "r:(scoped p => Filter.Eventually p <| 𝓝ˢ s) => r

Kyle Miller (Aug 31 2023 at 20:27):

#6833 should let it work as-is

In the meantime, notation3 doesn't support notation in its expansions if you want to generate a pretty printer:

notation3 "∀ᶠ " (...) " near "s", "r:(scoped p => Filter.Eventually p <| nhdsSet s) => r

Kyle Miller (Aug 31 2023 at 20:30):

(I just checked. #6833 does indeed fix the warning.)

Patrick Massot (Aug 31 2023 at 20:32):

Thanks!


Last updated: Dec 20 2023 at 11:08 UTC