Skip to content

Commit a807898

Browse files
authored
Support Julia v1.6 (#53)
* Use oneto * Update InfiniteArrays.jl * Fixes for v1.5 * Update runtests.jl * Update runtests.jl * v0.9.4
1 parent cfbe560 commit a807898

File tree

5 files changed

+90
-63
lines changed

5 files changed

+90
-63
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "InfiniteArrays"
22
uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
3-
version = "0.9.3"
3+
version = "0.9.4"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/InfiniteArrays.jl

+36-25
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,40 @@ import ArrayLayouts: RangeCumsum
4747

4848
export ∞, Hcat, Vcat, Zeros, Ones, Fill, Eye, BroadcastArray, cache
4949

50-
50+
if VERSION v"1.6-"
51+
import Base: unitrange, oneto
52+
end
5153

5254
include("Infinity.jl")
5355
include("infrange.jl")
5456
include("infarrays.jl")
5557
include("reshapedarray.jl")
5658

59+
if VERSION < v"1.6-"
60+
##
61+
# Temporary hacks for base support
62+
##
63+
Base.OneTo(::Infinity) = OneToInf()
64+
function Base.OneTo(x::OrientedInfinity)
65+
iszero(x.angle) && return oneto(∞)
66+
throw(ArgumentError("Cannot create infinite range with negative length"))
67+
end
68+
function Base.OneTo(x::SignedInfinity)
69+
signbit(x) || return oneto(∞)
70+
throw(ArgumentError("Cannot create infinite range with negative length"))
71+
end
72+
Base.OneTo{T}(::Infinity) where T<:Integer = OneToInf{T}()
73+
Base.UnitRange(start::Integer, ::Infinity) = InfUnitRange(start)
74+
Base.UnitRange{T}(start::Integer, ::Infinity) where T<:Real = InfUnitRange{T}(start)
75+
Base.OneTo(a::OneToInf) = a
76+
Base.OneTo{T}(::OneToInf) where T<:Integer = OneToInf{T}()
77+
78+
Base.Int(::Infinity) =
79+
80+
unitrange(a, b) = UnitRange(a, b)
81+
oneto(n) = Base.OneTo(n)
82+
end
83+
5784
##
5885
# Fill FillArrays
5986
##
@@ -105,10 +132,14 @@ vcat(a::AbstractVector, b::AbstractVector, c::AbstractVector, d::AbstractFill{<:
105132

106133
vcat(a::AbstractMatrix, b::AbstractFill{<:Any,2,<:Tuple{OneToInf,OneTo}}) = Vcat(a, b)
107134

108-
cat_similar(A, T, shape::Tuple{Infinity}) = zeros(T,∞)
109-
cat_similar(A::AbstractArray, T, shape::Tuple{Infinity}) =
110-
Base.invoke(cat_similar, Tuple{AbstractArray, Any, Any}, A, T, shape)
111-
135+
cat_similar(A, ::Type{T}, shape::Tuple{Infinity}) where T = zeros(T,∞)
136+
if VERSION < v"1.6-"
137+
cat_similar(A::AbstractArray, ::Type{T}, shape::Tuple{Infinity}) where T =
138+
Base.invoke(cat_similar, Tuple{AbstractArray, Any, Any}, A, T, shape)
139+
else
140+
cat_similar(A::AbstractArray, ::Type{T}, shape::Tuple{Infinity}) where T =
141+
Base.invoke(cat_similar, Tuple{AbstractArray, Type{T}, Any}, A, T, shape)
142+
end
112143
function Base.__cat(A, shape::NTuple{N,Infinity}, catdims, X...) where N
113144
offsets = zeros(Union{Int,Infinity}, N)
114145
inds = Vector{Union{UnitRange{Int},InfUnitRange{Int}}}(undef, N)
@@ -140,26 +171,6 @@ reshape(parent::AbstractArray, shp::Tuple{Union{Integer,OneTo}, OneToInf, Vararg
140171

141172
# cat_similar(A, T, ::Tuple{Infinity}) = zeros(T, ∞)
142173

143-
##
144-
# Temporary hacks for base support
145-
##
146-
OneTo(::Infinity) = OneToInf()
147-
function OneTo(x::OrientedInfinity)
148-
iszero(x.angle) && return OneTo(∞)
149-
throw(ArgumentError("Cannot create infinite range with negative length"))
150-
end
151-
function OneTo(x::SignedInfinity)
152-
signbit(x) || return OneTo(∞)
153-
throw(ArgumentError("Cannot create infinite range with negative length"))
154-
end
155-
OneTo{T}(::Infinity) where T<:Integer = OneToInf{T}()
156-
UnitRange(start::Integer, ::Infinity) = InfUnitRange(start)
157-
UnitRange{T}(start::Integer, ::Infinity) where T<:Real = InfUnitRange{T}(start)
158-
OneTo(a::OneToInf) = a
159-
OneTo{T}(::OneToInf) where T<:Integer = OneToInf{T}()
160-
161-
Int(::Infinity) =
162-
163174
axistype(::OneTo{T}, ::OneToInf{V}) where {T,V} = OneToInf{promote_type(T,V)}()
164175
axistype(::OneToInf{V}, ::OneTo{T}) where {T,V} = OneToInf{promote_type(T,V)}()
165176

src/Infinity.jl

+8-8
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ cld(x::T, ::Infinity) where T<:Real = signbit(x) ? zero(T) : one(T)
8585

8686
mod(::Infinity, ::Infinity) = NotANumber()
8787
mod(::Infinity, ::Real) = NotANumber()
88-
function mod(x::Real, ::Infinity)
88+
function mod(x::Real, ::Infinity)
8989
x 0 || throw(ArgumentError("mod(x,∞) is unbounded for x < 0"))
9090
x
9191
end
@@ -139,7 +139,7 @@ sign(y::SignedInfinity) = 1-2signbit(y)
139139
angle(x::SignedInfinity) = π*signbit(x)
140140
mod(::SignedInfinity, ::SignedInfinity) = NotANumber()
141141
mod(::SignedInfinity, ::Real) = NotANumber()
142-
function mod(x::Real, y::SignedInfinity)
142+
function mod(x::Real, y::SignedInfinity)
143143
signbit(x) == signbit(y) || throw(ArgumentError("mod($x,$y) is unbounded"))
144144
x
145145
end
@@ -163,7 +163,7 @@ for Typ in (:Number, :Real, :Integer, :AbstractFloat)
163163
+(y::SignedInfinity, ::$Typ) = y
164164
-(y::SignedInfinity, ::$Typ) = y
165165
-(::$Typ, y::SignedInfinity) = -y
166-
function *(a::$Typ, y::SignedInfinity)
166+
function *(a::$Typ, y::SignedInfinity)
167167
iszero(a) && throw(ArgumentError("Cannot multiply $a * $y"))
168168
a > 0 ? y : (-y)
169169
end
@@ -182,17 +182,17 @@ end
182182

183183

184184

185-
function -(::Infinity, y::SignedInfinity)
185+
function -(::Infinity, y::SignedInfinity)
186186
signbit(y) || throw(ArgumentError("Cannot subtract ∞ from ∞"))
187187
188188
end
189189

190-
function -(x::SignedInfinity, ::Infinity)
190+
function -(x::SignedInfinity, ::Infinity)
191191
signbit(x) || throw(ArgumentError("Cannot subtract ∞ from ∞"))
192192
x
193193
end
194194

195-
function -(x::SignedInfinity, y::SignedInfinity)
195+
function -(x::SignedInfinity, y::SignedInfinity)
196196
signbit(x) == !signbit(y) || throw(ArgumentError("Cannot subtract ∞ from ∞"))
197197
x
198198
end
@@ -376,6 +376,6 @@ Base.Checked.checked_add(x::SignedInfinity, ::Integer) = x
376376

377377

378378
Base.to_index(::Infinity) =
379+
Base.to_shape(::Infinity) =
379380

380-
381-
Base.hash(::Infinity) = 0x020113134b21797f # made up
381+
Base.hash(::Infinity) = 0x020113134b21797f # made up

src/infrange.jl

+12
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ end
7171

7272
InfUnitRange(a::InfUnitRange) = a
7373
InfUnitRange{T}(a::AbstractInfUnitRange) where T<:Real = InfUnitRange{T}(first(a))
74+
InfUnitRange(a::AbstractInfUnitRange{T}) where T<:Real = InfUnitRange{T}(first(a))
75+
unitrange(a::AbstractInfUnitRange) = InfUnitRange(a)
76+
7477
AbstractArray{T}(a::InfUnitRange) where T<:Real = InfUnitRange{T}(a.start)
7578
AbstractVector{T}(a::InfUnitRange) where T<:Real = InfUnitRange{T}(a.start)
7679
AbstractArray{T}(a::InfStepRange) where T<:Real = InfStepRange(convert(T,a.start), convert(T,a.step))
@@ -97,6 +100,15 @@ be 1 and ∞.
97100
struct OneToInf{T<:Integer} <: AbstractInfUnitRange{T} end
98101

99102
OneToInf() = OneToInf{Int}()
103+
oneto(::Infinity) = OneToInf()
104+
function oneto(x::OrientedInfinity)
105+
iszero(x.angle) && return oneto(∞)
106+
throw(ArgumentError("Cannot create infinite range with negative length"))
107+
end
108+
function oneto(x::SignedInfinity)
109+
signbit(x) || return oneto(∞)
110+
throw(ArgumentError("Cannot create infinite range with negative length"))
111+
end
100112

101113
AbstractArray{T}(a::OneToInf) where T<:Integer = OneToInf{T}()
102114
AbstractVector{T}(a::OneToInf) where T<:Integer = OneToInf{T}()

test/runtests.jl

+33-29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using LinearAlgebra, SparseArrays, InfiniteArrays, FillArrays, LazyArrays, Statistics, DSP, BandedMatrices, LazyBandedMatrices, Test, Base64
2-
import InfiniteArrays: OrientedInfinity, SignedInfinity, InfUnitRange, InfStepRange, OneToInf, NotANumber
2+
import InfiniteArrays: OrientedInfinity, SignedInfinity, InfUnitRange, InfStepRange, OneToInf, NotANumber, oneto, unitrange
33
import LazyArrays: CachedArray, MemoryLayout, LazyLayout, DiagonalLayout, LazyArrayStyle, colsupport, DualLayout
44
import BandedMatrices: _BandedMatrix, BandedColumns
55
import Base.Broadcast: broadcasted, Broadcasted, instantiate
@@ -42,7 +42,7 @@ import Base.Broadcast: broadcasted, Broadcasted, instantiate
4242

4343
@test string(∞) == ""
4444

45-
@test Base.OneTo(∞) == OneToInf()
45+
@test oneto(∞) == OneToInf()
4646

4747
@test isinf(∞)
4848
@test !isfinite(∞)
@@ -147,8 +147,8 @@ import Base.Broadcast: broadcasted, Broadcasted, instantiate
147147
@test (-∞)*2 2*(-∞) -2 ** (-2) (-2) * SignedInfinity() -
148148
@test (-∞)*2.3 2.3*(-∞) -2.3 ** (-2.3) (-2.3) * SignedInfinity() -
149149

150-
@test Base.OneTo(1*∞) == OneToInf()
151-
@test_throws ArgumentError Base.OneTo(-∞)
150+
@test oneto(1*∞) == OneToInf()
151+
@test_throws ArgumentError oneto(-∞)
152152

153153
@test isinf(-∞)
154154
@test !isfinite(-∞)
@@ -190,6 +190,8 @@ import Base.Broadcast: broadcasted, Broadcasted, instantiate
190190

191191
@test exp(im*π/4)*== Inf+im*Inf
192192
@test exp(im*π/4)+==
193+
194+
@test_throws ArgumentError oneto(exp(im*π/4)*∞)
193195
end
194196
end
195197

@@ -234,9 +236,9 @@ end
234236
@test similar(a, Float64, ∞) isa CachedArray{Float64}
235237
@test similar(a, Float64, (∞,)) isa CachedArray{Float64}
236238
@test similar(a, Float64, (∞,∞)) isa CachedArray{Float64}
237-
@test similar(a, Float64, Base.OneTo(∞)) isa CachedArray{Float64}
238-
@test similar(a, Float64, (Base.OneTo(∞),)) isa CachedArray{Float64}
239-
@test similar(a, Float64, (Base.OneTo(∞),Base.OneTo(∞))) isa CachedArray{Float64}
239+
@test similar(a, Float64, oneto(∞)) isa CachedArray{Float64}
240+
@test similar(a, Float64, (oneto(∞),)) isa CachedArray{Float64}
241+
@test similar(a, Float64, (oneto(∞),oneto(∞))) isa CachedArray{Float64}
240242

241243
@test similar([1,2,3],Float64,()) isa Array{Float64,0}
242244

@@ -443,8 +445,8 @@ end
443445
end
444446

445447
@testset "Base.OneTo (misleading) overrides" begin
446-
@test Base.OneTo{BigInt}(∞) isa OneToInf{BigInt}
447-
@test Base.OneTo(∞) isa OneToInf{Int}
448+
@test_skip Base.OneTo{BigInt}(∞) isa OneToInf{BigInt}
449+
@test oneto(∞) isa OneToInf{Int}
448450
end
449451

450452
@testset "issue #6973" begin
@@ -501,6 +503,8 @@ end
501503

502504
@test AbstractArray{Float64}(1:2:∞) AbstractVector{Float64}(1:2:∞)
503505
convert(AbstractVector{Float64}, 1:2:∞) convert(AbstractArray{Float64}, 1:2:∞)
506+
507+
@test unitrange(oneto(∞)) InfUnitRange(oneto(∞)) InfUnitRange{Int}(oneto(∞)) InfUnitRange(1)
504508
end
505509

506510
@testset "inf-range[inf-range]" begin
@@ -545,7 +549,7 @@ end
545549
end
546550

547551
@testset "end" begin
548-
@test Base.OneTo(∞)[end] Base.OneTo(∞)[∞]
552+
@test oneto(∞)[end] oneto(∞)[∞]
549553
@test (1:∞)[end] (1:∞)[∞]
550554
@test (1:2:∞)[end] (1:2:∞)[∞]
551555
@test (1.0:2:∞)[end] (1.0:2:∞)[∞]
@@ -834,10 +838,10 @@ end
834838
@testset "Cumsum and diff" begin
835839
@test cumsum(Ones(∞)) 1.0:1.0:
836840
@test cumsum(Fill(2,∞)) 2:2:
837-
@test cumsum(Ones{Int}(∞)) Base.OneTo(∞)
838-
@test cumsum(Ones{BigInt}(∞)) Base.OneTo{BigInt}()
841+
@test cumsum(Ones{Int}(∞)) oneto(∞)
842+
@test cumsum(Ones{BigInt}(∞)) OneToInf{BigInt}()
839843

840-
@test diff(Base.OneTo(∞)) Ones{Int}(∞)
844+
@test diff(oneto(∞)) Ones{Int}(∞)
841845
@test diff(1:∞) Fill(1,∞)
842846
@test diff(1:2:∞) Fill(2,∞)
843847
@test diff(1:2.0:∞) Fill(2.0,∞)
@@ -853,7 +857,7 @@ end
853857
@test cumsum(x).args[2] 8:12
854858
@test last(y.args) == sum(x[1:9]):2:
855859

856-
for r in (3:4:∞, 2:∞, Base.OneTo(∞))
860+
for r in (3:4:∞, 2:∞, oneto(∞))
857861
c = cumsum(r)
858862
@test c isa InfiniteArrays.RangeCumsum
859863
@test c[Base.OneTo(20)] == c[1:20] == [c[k] for k=1:20] == cumsum(r[1:20])
@@ -877,8 +881,8 @@ end
877881
@test conv(1:2:∞, [2]) conv([2], 1:2:∞) 2:4:
878882
@test conv(1:∞, Ones(∞))[1:5] == conv(Ones(∞),1:∞)[1:5] == [1,3,6,10,15]
879883
@test conv(Ones(∞), Ones(∞)) 1.0:1.0:
880-
@test conv(Ones{Int}(∞), Ones{Int}(∞)) Base.OneTo(∞)
881-
@test conv(Ones{Bool}(∞), Ones{Bool}(∞)) Base.OneTo(∞)
884+
@test conv(Ones{Int}(∞), Ones{Int}(∞)) oneto(∞)
885+
@test conv(Ones{Bool}(∞), Ones{Bool}(∞)) oneto(∞)
882886
@test conv(Fill{Int}(2,∞), Fill{Int}(1,∞)) conv(Fill{Int}(2,∞), Ones{Int}(∞))
883887
conv(Ones{Int}(∞), Fill{Int}(2,∞)) 2:2:
884888
@test conv(Ones{Int}(∞), [1,5,8])[1:10] == conv([1,5,8], Ones{Int}(∞))[1:10] ==
@@ -1008,21 +1012,21 @@ end
10081012
end
10091013

10101014
@testset "convert infrange" begin
1011-
@test convert(AbstractArray{Float64}, 1:∞) convert(AbstractArray{Float64}, Base.OneTo(∞))
1012-
convert(AbstractVector{Float64}, 1:∞) convert(AbstractVector{Float64}, Base.OneTo(∞))
1013-
AbstractVector{Float64}(1:∞) AbstractVector{Float64}(Base.OneTo(∞))
1014-
AbstractArray{Float64}(1:∞) AbstractArray{Float64}(Base.OneTo(∞)) InfUnitRange(1.0)
1015-
1016-
@test convert(AbstractArray{Float64}, (1:∞)') convert(AbstractArray{Float64}, Base.OneTo(∞)')
1017-
convert(AbstractMatrix{Float64}, (1:∞)') convert(AbstractMatrix{Float64}, Base.OneTo(∞)')
1018-
AbstractMatrix{Float64}((1:∞)') AbstractMatrix{Float64}(Base.OneTo(∞)')
1019-
AbstractArray{Float64}((1:∞)') AbstractArray{Float64}(Base.OneTo(∞)')
1015+
@test convert(AbstractArray{Float64}, 1:∞) convert(AbstractArray{Float64}, oneto(∞))
1016+
convert(AbstractVector{Float64}, 1:∞) convert(AbstractVector{Float64}, oneto(∞))
1017+
AbstractVector{Float64}(1:∞) AbstractVector{Float64}(oneto(∞))
1018+
AbstractArray{Float64}(1:∞) AbstractArray{Float64}(oneto(∞)) InfUnitRange(1.0)
1019+
1020+
@test convert(AbstractArray{Float64}, (1:∞)') convert(AbstractArray{Float64}, oneto(∞)')
1021+
convert(AbstractMatrix{Float64}, (1:∞)') convert(AbstractMatrix{Float64}, oneto(∞)')
1022+
AbstractMatrix{Float64}((1:∞)') AbstractMatrix{Float64}(oneto(∞)')
1023+
AbstractArray{Float64}((1:∞)') AbstractArray{Float64}(oneto(∞)')
10201024
InfUnitRange(1.0)'
10211025

1022-
@test convert(AbstractArray{Float64}, transpose(1:∞)) convert(AbstractArray{Float64}, transpose(Base.OneTo(∞)))
1023-
convert(AbstractMatrix{Float64}, transpose(1:∞)) convert(AbstractMatrix{Float64}, transpose(Base.OneTo(∞)))
1024-
AbstractMatrix{Float64}(transpose(1:∞)) AbstractMatrix{Float64}(transpose(Base.OneTo(∞)))
1025-
AbstractArray{Float64}(transpose(1:∞)) AbstractArray{Float64}(transpose(Base.OneTo(∞)))
1026+
@test convert(AbstractArray{Float64}, transpose(1:∞)) convert(AbstractArray{Float64}, transpose(oneto(∞)))
1027+
convert(AbstractMatrix{Float64}, transpose(1:∞)) convert(AbstractMatrix{Float64}, transpose(oneto(∞)))
1028+
AbstractMatrix{Float64}(transpose(1:∞)) AbstractMatrix{Float64}(transpose(oneto(∞)))
1029+
AbstractArray{Float64}(transpose(1:∞)) AbstractArray{Float64}(transpose(oneto(∞)))
10261030
transpose(InfUnitRange(1.0))
10271031
end
10281032

0 commit comments

Comments
 (0)