fix(library/init/logic): eq.symm should not use eq.subst
Reason: eq.symm is used by definitional package, and eq.subst is opaque. Thus, computation will get stuck if it depends on eq.subst.
This commit is contained in:
parent
c66826787a
commit
4781fc8365
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ namespace eq
|
|||
subst H₂ H₁
|
||||
|
||||
definition symm (H : a = b) : b = a :=
|
||||
subst H (refl a)
|
||||
rec (refl a) H
|
||||
|
||||
namespace ops
|
||||
notation H `⁻¹` := symm H --input with \sy or \-1 or \inv
|
||||
|
|
Loading…
Reference in a new issue