Skip to content

Commit 4078f30

Browse files
lkdvosJutho
authored andcommitted
Fix missing change
1 parent 1f63100 commit 4078f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensors/linalg.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ function catcodomain(t1::TT, t2::TT) where {S,N₂,TT<:AbstractTensorMap{<:Any,S
436436
V = V1 V2
437437
T = promote_type(scalartype(t1), scalartype(t2))
438438
t = similar(t1, T, V domain(t1))
439-
for (c, b) in sectors(t)
439+
for (c, b) in blocks(t)
440440
b[1:dim(V1, c), :] .= block(t1, c)
441441
b[dim(V1, c) .+ (1:dim(V2, c)), :] .= block(t2, c)
442442
end

0 commit comments

Comments
 (0)