We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658893e commit 44456aaCopy full SHA for 44456aa
test/sectors.jl
@@ -52,6 +52,15 @@ end
52
end
53
54
55
+@testsuite "fusion and dimensions" I -> begin
56
+ for a in smallset(I), b in smallset(I)
57
+ da = dim(a)
58
+ db = dim(b)
59
+ dc = sum(c -> dim(c) * Nsymbol(a, b, c), a ⊗ b)
60
+ @test da * db ≈ dc # needs to be ≈ because of anyons
61
+ end
62
+end
63
+
64
@testsuite "fusion tensor and F-move" I -> begin
65
(BraidingStyle(I) isa Bosonic && hasfusiontensor(I)) || return nothing
66
for a in smallset(I), b in smallset(I), c in smallset(I)
0 commit comments