Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/sectors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,16 @@ Base.:&(f₁::UnitStyle, f₂::UnitStyle) = f₂ & f₁

Base.:&(::GenericUnit, ::SimpleUnit) = GenericUnit()

"""
fusiontensor(a::I, b::I, c::I) where {I <: Sector} -> Array{T, 4}

Return the fusion tensor for the fusion `a ⊗ b -> c`, where `a`, `b`, and `c` are irreps of
a group. The dimensions of the returned array are `(dim(a), dim(b), dim(c), Nsymbol(a, b, c))`.
The components of the fusion tensor are simply the Clebsch-Gordan coefficients of the group,
describing the unitary basis change from the tensor product of irreps `a` and `b` to the coupled irrep `c`.
"""
function fusiontensor end

"""
Fsymbol(a::I, b::I, c::I, d::I, e::I, f::I) where {I <: Sector}

Expand Down