1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-10-15 16:10:35 +02:00

fix Cstar_repr: explicit Float64 conversion

This commit is contained in:
kalmar 2017-07-31 12:13:14 +02:00
parent 15140d4e39
commit cda9538653

View File

@ -136,7 +136,7 @@ function Cstar_repr{T}(x::GroupRingElem{T}, mreps::Dict)
for g in parent(x).basis
if x[g] != zero(T)
res .+= x[g].*mreps[g]
res .+= Float64(x[g]).*mreps[g]
end
end