-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Miscellaneous prelude cleaning #619
Conversation
Cubical/Foundations/Prelude.agda
Outdated
@@ -286,12 +312,12 @@ module _ (P : ∀ y → x ≡ y → Type ℓ') (d : P x refl) where | |||
-- Converting to and from a PathP | |||
|
|||
module _ {A : I → Type ℓ} {x : A i0} {y : A i1} where | |||
toPathP : transp (\ i → A i) i0 x ≡ y → PathP A x y | |||
toPathP : transp A i0 x ≡ y → PathP A x y |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, no need to eta-expand anymore? @Saizan
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's necessary to convert between lines and paths, but that's not happening here. Though it would need to expanded if I switch it to transport
, since that takes a path. (Still it might be conceptually better to use transport
?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, maybe nicer with transport?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! Two small comments, then we can merge
No description provided.