def
definition
def or abbrev
IsMaximalRecognizer
show as:
view Lean formalization →
formal statement (Lean)
186def IsMaximalRecognizer {E : Type*} (r : Recognizer C E)
187 (family : ∀ (E' : Type*), Set (Recognizer C E')) : Prop :=
proof body
Definition body.
188 ∀ (E' : Type*) (r' : Recognizer C E'), r' ∈ family E' →
189 IsFinerThan r' r → IsFinerThan r r'
190
191/-- A maximal recognizer has the property that its resolution cells cannot
192 be split by any other recognizer in the family. -/