@@ -569,15 +569,19 @@ function ⊗(t1::AbstractTensorMap, t2::AbstractTensorMap)
569569 throw (SpaceMismatch (" spacetype(t1) ≠ spacetype(t2)" ))
570570 cod1, cod2 = codomain (t1), codomain (t2)
571571 dom1, dom2 = domain (t1), domain (t2)
572- p12 = ((codomainind (t1)... , (codomainind (t2) .+ numind (t1)). .. ),
573- (domainind (t1)... , (domainind (t2) .+ numind (t1)). .. ))
572+ p12 = (
573+ (codomainind (t1)... , (codomainind (t2) .+ numind (t1)). .. ),
574+ (domainind (t1)... , (domainind (t2) .+ numind (t1)). .. ),
575+ )
574576
575577 T = promote_type (scalartype (t1), scalartype (t2))
576578 TC = promote_type (sectorscalartype (sectortype (t1)), T)
577- t = TO. tensoralloc_contract (TC,
578- t1, ((codomainind (t1)... , domainind (t1)... ), ()), false ,
579- t2, ((), (codomainind (t2)... , domainind (t2)... )), false ,
580- p12, Val (false ))
579+ t = TO. tensoralloc_contract (
580+ TC,
581+ t1, ((codomainind (t1)... , domainind (t1)... ), ()), false ,
582+ t2, ((), (codomainind (t2)... , domainind (t2)... )), false ,
583+ p12, Val (false )
584+ )
581585
582586 zerovector! (t)
583587 for (f1l, f1r) in fusiontrees (t1)
0 commit comments