I'm still a bit confused about the transp operator in Agda:
transp : ∀ {ℓ} (A : I → Set ℓ) (r : I) (a : A i0) → A i1
Is found this paper and I wonder if there is a relation?
As far as I understand, the $\mathsf{comp}^i$ operator lets you transport an $n$-dimensional cube along $i$ and if you already know how some of the faces in the resulting $n+1$-dimensional cube should look like, you can specify them. So for example, $\mathsf{comp}^i A\ [(j=0)\mapsto q\ i]\ (p\ j)$ would only respect $q\ i$ but at $j=1$, the resulting face would not necessarily equal $r\ i$, is that correct?
They also define $\mathsf{transport}^i\ A\ u_0$ as $\mathsf{comp}^i\ A\ []\ u_0$ which I read as composition with no constraints and which looks a little bit like Agda's transport:
transport : ∀ {ℓ} {A B : Set ℓ} → A ≡ B → A → B transport p a = transp (λ i → p i) i0 a
Could it be that transp is something like $\mathsf{comp}^i$ but where all constraints (like $q\ i$ and $r\ i$ in the example above) are constant (in $i$) and $r$ specifies at which faces the constant constraints are introduced?
