structure
definition
def or abbrev
RecognitionLikeStructure
show as:
view Lean formalization →
formal statement (Lean)
135structure RecognitionLikeStructure where
136 carrier : Type
137 rel : carrier → carrier → Prop
138 refl : ∀ x, rel x x
139 symm : ∀ x y, rel x y → rel y x
140