@@ -273,12 +273,12 @@ the indices of `tsrc` according to `(p₁, p₂)`.
273273
274274See also [`permute`](@ref), [`permute!`](@ref), [`add_braid!`](@ref), [`add_transpose!`](@ref).
275275"""
276- @propagate_inbounds function add_permute! (tdst:: AbstractTensorMap{T,S,N₁,N₂} ,
276+ @propagate_inbounds function add_permute! (tdst:: AbstractTensorMap ,
277277 tsrc:: AbstractTensorMap ,
278- p:: Index2Tuple{N₁,N₂} ,
278+ p:: Index2Tuple ,
279279 α:: Number ,
280280 β:: Number ,
281- backend:: AbstractBackend... ) where {T,S,N₁,N₂}
281+ backend:: AbstractBackend... )
282282 transformer = treepermuter (tdst, tsrc, p)
283283 return add_transform! (tdst, tsrc, p, transformer, α, β, backend... )
284284end
@@ -292,13 +292,13 @@ the indices of `tsrc` according to `(p₁, p₂)` and `levels`.
292292
293293See also [`braid`](@ref), [`braid!`](@ref), [`add_permute!`](@ref), [`add_transpose!`](@ref).
294294"""
295- @propagate_inbounds function add_braid! (tdst:: AbstractTensorMap{T,S,N₁,N₂} ,
295+ @propagate_inbounds function add_braid! (tdst:: AbstractTensorMap ,
296296 tsrc:: AbstractTensorMap ,
297- p:: Index2Tuple{N₁,N₂} ,
297+ p:: Index2Tuple ,
298298 levels:: IndexTuple ,
299299 α:: Number ,
300300 β:: Number ,
301- backend:: AbstractBackend... ) where {T,S,N₁,N₂}
301+ backend:: AbstractBackend... )
302302 length (levels) == numind (tsrc) ||
303303 throw (ArgumentError (" incorrect levels $levels for tensor map $(codomain (tsrc)) ← $(domain (tsrc)) " ))
304304
@@ -318,12 +318,12 @@ the indices of `tsrc` according to `(p₁, p₂)`.
318318
319319See also [`transpose`](@ref), [`transpose!`](@ref), [`add_permute!`](@ref), [`add_braid!`](@ref).
320320"""
321- @propagate_inbounds function add_transpose! (tdst:: AbstractTensorMap{T,S,N₁,N₂} ,
321+ @propagate_inbounds function add_transpose! (tdst:: AbstractTensorMap ,
322322 tsrc:: AbstractTensorMap ,
323- p:: Index2Tuple{N₁,N₂} ,
323+ p:: Index2Tuple ,
324324 α:: Number ,
325325 β:: Number ,
326- backend:: AbstractBackend... ) where {T,S,N₁,N₂}
326+ backend:: AbstractBackend... )
327327 transformer = treetransposer (tdst, tsrc, p)
328328 return add_transform! (tdst, tsrc, p, transformer, α, β, backend... )
329329end
0 commit comments