module Cubical.Data.Equality.More where
open import Cubical.Foundations.Prelude
hiding (_≡_ ; step-≡ ; _∎ ; isPropIsContr)
renaming ( refl to reflPath
; transport to transportPath
; J to JPath
; JRefl to JPathRefl
; sym to symPath
; _∙_ to compPath
; cong to congPath
; subst to substPath
; substRefl to substPathReflPath
; funExt to funExtPath
; isContr to isContrPath
; isProp to isPropPath
)
open import Cubical.Foundations.Equiv
renaming ( fiber to fiberPath
; isEquiv to isEquivPath
; _≃_ to EquivPath
; equivFun to equivFunPath
; isPropIsEquiv to isPropIsEquivPath
)
hiding ( equivCtr
; equivIsEquiv )
open import Cubical.Foundations.Isomorphism
using ()
renaming ( Iso to IsoPath
; iso to isoPath
; isoToPath to isoPathToPath
; isoToEquiv to isoPathToEquivPath
)
open import Cubical.Data.Equality
private
variable
a b ℓ ℓ' : Level
A : Type a
B : Type b
x y z : A
mixedHEq : {A0 A1 : Type ℓ} (Aeq : A0 ≡ A1) (a0 : A0)(a1 : A1) → Type _
mixedHEq Aeq a0 a1 = Path _ (transport (λ A → A) Aeq a0) a1
Eq : ∀ {ℓ} (A : Type ℓ) → A → A → Type ℓ
Eq A a b = a ≡ b