Skip to content

Commit 69e7423

Browse files
committed
remove debug elements
1 parent 3dd1257 commit 69e7423

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/spaces/multifusionspace.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ Base.zero(S::Type{Vect[IsingBimod]}) = Vect[IsingBimod]()
3030
function blocksectors(W::TensorMapSpace{Vect[IsingBimod],N₁,N₂}) where {N₁,N₂}
3131
codom = codomain(W)
3232
dom = domain(W)
33-
@info "in blocksectors with $W"
3433
if N₁ == 0 && N₂ == 0
35-
@info "no sectors, returning empty set"
3634
return (IsingBimod(1, 1, 0), IsingBimod(2, 2, 0))
3735
elseif N₁ == 0
3836
@assert N₂ != 0 "one of Type IsingBimod doesn't exist"
@@ -41,7 +39,6 @@ function blocksectors(W::TensorMapSpace{Vect[IsingBimod],N₁,N₂}) where {N₁
4139
@assert N₁ != 0 "one of Type IsingBimod doesn't exist"
4240
return filter!(c -> c == leftone(c) == rightone(c), collect(blocksectors(codom)))
4341
elseif N₂ <= N₁ # keep intersection
44-
@info "returning sectors in domain"
4542
return filter!(c -> hasblock(codom, c), collect(blocksectors(dom)))
4643
else
4744
return filter!(c -> hasblock(dom, c), collect(blocksectors(codom)))

0 commit comments

Comments
 (0)