remove superfluous @time

This commit is contained in:
kalmarek 2018-11-24 15:02:28 +01:00
parent 9ff0481a0c
commit 6b90197ae3
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ function reconstruct(Ps::Vector{M},
tmp[π] = perm_avg(tmp[π], transfP[π], values(preps))
end
@time recP = sum(tmp)./length(preps)
recP = sum(tmp)./length(preps)
return recP
end