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 @@ -263,8 +263,10 @@ println("---------------------------------")
263263 Vect[I](c => 1 for c in sectors (V) if rightone (c) == ur == leftone (c) || (c. i == i && c. j == j))
264264 @test @constinferred (⊕ (Wleft, WMop)) ==
265265 Vect[I](c => 1 for c in sectors (V) if rightone (c) == ul == leftone (c) || (c. i == j && c. j == i))
266- @test @constinferred (fuse (Wleft, WM)) == Vect[I](c => dim (Wleft) for c in sectors (WM)) # this might be wrong
267- @test @constinferred (fuse (Wright, WMop)) == Vect[I](c => dim (Wright) for c in sectors (WMop)) # same
266+ # round needed below because of numerical F-symbols not being integer when they should be
267+ # although this test might be stupid, because I'm assuming integer qdims bc everything's a group or irrep on the diagonal
268+ @test @constinferred (fuse (Wleft, WM)) == Vect[I](c => round (Int, dim (Wleft)) for c in sectors (WM)) # this might be wrong
269+ @test @constinferred (fuse (Wright, WMop)) == Vect[I](c => round (Int, dim (Wright)) for c in sectors (WMop)) # same
268270
269271 # less sensible fuse
270272 @test @constinferred (fuse (Wleft, WMop)) == fuse (Wright, WM) ==
You can’t perform that action at this time.
0 commit comments