File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,8 @@ More specifically, adds a left monoidal unit or its dual.
253253
254254See also [`insertrightunit`](@ref), [`removeunit`](@ref).
255255"""
256- function insertleftunit (P:: ProductSpace , i:: Int = length (P) + 1 ; kwargs... )
256+ function insertleftunit (P:: ProductSpace , i:: Int = length (P) + 1 ;
257+ conj:: Bool = false , dual:: Bool = false )
257258 u = oneunit (spacetype (P))
258259 if dual
259260 u = TensorKit. dual (u)
@@ -272,7 +273,8 @@ More specifically, adds a right monoidal unit or its dual.
272273
273274See also [`insertleftunit`](@ref), [`removeunit`](@ref).
274275"""
275- function insertrightunit (P:: ProductSpace , i:: Int = length (P); kwargs... )
276+ function insertrightunit (P:: ProductSpace , i:: Int = length (P);
277+ conj:: Bool = false , dual:: Bool = false )
276278 u = oneunit (spacetype (P))
277279 if dual
278280 u = TensorKit. dual (u)
You can’t perform that action at this time.
0 commit comments