You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if den !=0&&abs(den*start) <= m &&abs(den*stop) <= m
start_n =round(Int, den*start)
stop_n =round(Int, den*stop)
ifT(start_n/den) == start &&T(stop_n/den) == stop
return_linspace(T, start_n, stop_n, len, den)
end
end
end
_linspace(start, stop, len)
end
I tried to haveimin converted to L after clamping, but that still leaves different but related bugs with things like negative starting values with unsigned lengths so I don't think that's the correct solution and will let people more familiar with the code figure out the best way to solve this.
range command seems to misbehave when UInt64 length argument is used:
The problem seem to disappear if:
Julia version:
The problem also replicates on an x86_64 machine.
The text was updated successfully, but these errors were encountered: