Skip to content

Commit 6065d25

Browse files
committed
Revert "remove module specification"
This reverts commit 9ffa2dc.
1 parent 9ffa2dc commit 6065d25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/spaces/productspace.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ function insertleftunitspace(P::ProductSpace, ::Val{i}=Val(length(P) + 1);
269269
u = leftunitspace(P[i])
270270
end
271271
if dual
272-
u = dual(u)
272+
u = TensorKit.dual(u)
273273
end
274274
if conj
275-
u = conj(u)
275+
u = TensorKit.conj(u)
276276
end
277277
return ProductSpace(TupleTools.insertafter(P.spaces, i - 1, (u,)))
278278
end
@@ -298,10 +298,10 @@ function insertrightunitspace(P::ProductSpace, ::Val{i}=Val(length(P));
298298
u = rightunitspace(P[i])
299299
end
300300
if dual
301-
u = dual(u)
301+
u = TensorKit.dual(u)
302302
end
303303
if conj
304-
u = conj(u)
304+
u = TensorKit.conj(u)
305305
end
306306
return ProductSpace(TupleTools.insertafter(P.spaces, i, (u,)))
307307
end

0 commit comments

Comments
 (0)