mirror of
https://github.com/tgorordo/WignerSymbols.jl.git
synced 2026-06-05 15:42:15 -07:00
fix depwarn for .+ in range
This commit is contained in:
parent
b3f65e9b46
commit
f647d8948b
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ function sumlist!(list::Vector{<:PrimeFactorization}, ind = 1:length(list))
|
|||
L = length(ind)
|
||||
if L > 32
|
||||
l = L >> 1
|
||||
s = sumlist!(list, first(ind)+(0:l-1)) + sumlist!(list, first(ind)+(l:L-1))
|
||||
s = sumlist!(list, first(ind).+(0:l-1)) + sumlist!(list, first(ind).+(l:L-1))
|
||||
else
|
||||
# do sum
|
||||
s = big(0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue