Skip to content

Commit 9aad6cf

Browse files
committed
Fix obsolete Dict notation
1 parent 527111e commit 9aad6cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/youngdiagrams.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ end
154154
# Journal of Symbolic Computation, vol. 37 iss. 6 (2004), pp 727-748.
155155
# doi:10.1016/j.jsc.2003.11.001
156156
function character::Partition, μ::Partition)
157-
T = {()=>0} #Sparse array implemented as dict
157+
T = Dict{Any,Any}(()=>0) #Sparse array implemented as dict
158158
Λ▔ = partitionsequence(λ)
159159
MN1inner(Λ▔, T, μ, 1)
160160
end

0 commit comments

Comments
 (0)