We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34aae22 commit 6fb0d44Copy full SHA for 6fb0d44
src/foundation-core/dependent-identifications.lagda.md
@@ -47,6 +47,16 @@ refl-dependent-identification :
47
{l1 l2 : Level} {A : UU l1} (B : A → UU l2) {x : A} {y : B x} →
48
dependent-identification B refl y y
49
refl-dependent-identification B = refl
50
+
51
+dependent-identification' :
52
+ {l1 l2 : Level} {A : UU l1} (B : A → UU l2) {x x' : A} (p : x = x') →
53
+ B x → B x' → UU l2
54
+dependent-identification' B p u v = (u = inv-tr B p v)
55
56
+refl-dependent-identification' :
57
+ {l1 l2 : Level} {A : UU l1} (B : A → UU l2) {x : A} {y : B x} →
58
+ dependent-identification' B refl y y
59
+refl-dependent-identification' B = refl
60
```
61
62
### Iterated dependent identifications
0 commit comments