English
A point x is an accumulation point of a filter F if 𝓝[≠] x ⊓ F ≠ ⊥.
Русский
Точка x является точкой аккумуляции фильтра F, если 𝓝[≠] x ⊓ F ≠ ⊥.
LaTeX
$$$\operatorname{AccPt}(x,F) \iff 𝓝[\\neq] x \nabla F \ne \bot$$$
Lean4
/-- A point `x` is an accumulation point of a filter `F` if `𝓝[≠] x ⊓ F ≠ ⊥`.
See also `ClusterPt`. -/
def AccPt (x : X) (F : Filter X) : Prop :=
NeBot (𝓝[≠] x ⊓ F)