fix(builtin/kernel): add ascii notation for transitivity
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
32c5bc25e3
commit
2753a0ffc0
2 changed files with 2 additions and 1 deletions
|
@ -156,7 +156,8 @@ theorem symm {A : TypeU} {a b : A} (H : a = b) : b = a
|
|||
theorem trans {A : TypeU} {a b c : A} (H1 : a = b) (H2 : b = c) : a = c
|
||||
:= subst H1 H2
|
||||
|
||||
infixl 100 ⋈ : trans
|
||||
infixl 100 >< : trans
|
||||
infixl 100 ⋈ : trans
|
||||
|
||||
theorem ne_symm {A : TypeU} {a b : A} (H : a ≠ b) : b ≠ a
|
||||
:= assume H1 : b = a, H (symm H1)
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue