diff --git a/Project.toml b/Project.toml index 78ec1fe8..0a08c1cf 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "RecursiveArrayTools" uuid = "731186ca-8d62-57ce-b412-fbd966d074cd" authors = ["Chris Rackauckas "] -version = "3.2.1" +version = "3.2.2" [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" diff --git a/src/utils.jl b/src/utils.jl index 7e137db0..c59a9710 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -42,39 +42,47 @@ like `copy!` on arrays of scalars. """ function recursivecopy! end -for type in [AbstractArray, AbstractVectorOfArray] - @eval function recursivecopy!(b::$type{T, N}, - a::$type{T2, N}) where {T <: StaticArraysCore.StaticArray, - T2 <: StaticArraysCore.StaticArray, - N} - @inbounds for i in eachindex(a) - # TODO: Check for `setindex!`` and use `copy!(b[i],a[i])` or `b[i] = a[i]`, see #19 - b[i] = copy(a[i]) - end +function recursivecopy!(b::AbstractArray{T, N}, a::AbstractArray{T2, N}) where {T <: StaticArraysCore.StaticArray, + T2 <: StaticArraysCore.StaticArray, + N} + @inbounds for i in eachindex(a) + # TODO: Check for `setindex!`` and use `copy!(b[i],a[i])` or `b[i] = a[i]`, see #19 + b[i] = copy(a[i]) end +end - @eval function recursivecopy!(b::$type{T, N}, - a::$type{T2, N}) where {T <: Enum, T2 <: Enum, N} - copyto!(b, a) - end +function recursivecopy!(b::AbstractArray{T, N}, + a::AbstractArray{T2, N}) where {T <: Enum, T2 <: Enum, N} + copyto!(b, a) +end + +function recursivecopy!(b::AbstractArray{T, N}, + a::AbstractArray{T2, N}) where {T <: Number, T2 <: Number, N} + copyto!(b, a) +end - @eval function recursivecopy!(b::$type{T, N}, - a::$type{T2, N}) where {T <: Number, T2 <: Number, N} +function recursivecopy!(b::AbstractArray{T, N}, + a::AbstractArray{T2, N}) where {T <: Union{AbstractArray, AbstractVectorOfArray}, + T2 <: Union{AbstractArray, AbstractVectorOfArray}, N} + if ArrayInterface.ismutable(T) + @inbounds for i in eachindex(b, a) + recursivecopy!(b[i], a[i]) + end + else copyto!(b, a) end + return b +end - @eval function recursivecopy!(b::$type{T, N}, - a::$type{T2, N}) where {T <: Union{AbstractArray, AbstractVectorOfArray}, - T2 <: Union{AbstractArray, AbstractVectorOfArray}, N} - if ArrayInterface.ismutable(T) - @inbounds for i in eachindex(b, a) - recursivecopy!(b[i], a[i]) - end - else - copyto!(b, a) +function recursivecopy!(b::AbstractVectorOfArray, a::AbstractVectorOfArray) + if ArrayInterface.ismutable(eltype(b.u)) + @inbounds for i in eachindex(b.u, a.u) + recursivecopy!(b.u[i], a.u[i]) end - return b + else + copyto!(b.u, a.u) end + return b end """ diff --git a/test/utils_test.jl b/test/utils_test.jl index aa6acec4..52f24bd6 100644 --- a/test/utils_test.jl +++ b/test/utils_test.jl @@ -122,4 +122,12 @@ end @test u1.u[2] == [2.0,2.0] @test u1.u[1] isa MVector @test u1.u[2] isa MVector + + u1 = VectorOfArray([fill(2, SVector{2, Float64}), ones(SVector{2, Float64})]) + u2 = VectorOfArray([fill(4, SVector{2, Float64}), 2 .* ones(SVector{2, Float64})]) + recursivecopy!(u1,u2) + @test u1.u[1] == [4.0,4.0] + @test u1.u[2] == [2.0,2.0] + @test u1.u[1] isa SVector + @test u1.u[2] isa SVector end