Skip to content

Commit 058032d

Browse files
putianyi889dlfivefifty
andauthoredMar 7, 2021
Add one and copy for Diagonal (#52)
* Update infarrays.jl * Update runtests.jl * Update infarrays.jl * Update runtests.jl * Update infarrays.jl Co-authored-by: Sheehan Olver <solver@mac.com>
1 parent a9437da commit 058032d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎src/infarrays.jl

+2
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ end
234234
# Diagonal
235235
#####
236236

237+
one(D::Diagonal{T,<:AbstractFill{T,1,Tuple{OneToInf{Int}}}}) where T = Eye{T}(size(D,1))
238+
copy(D::Diagonal{T,<:AbstractFill{T,1,Tuple{OneToInf{Int}}}}) where T = D
237239

238240
BroadcastStyle(::Type{<:Diagonal{<:Any,<:AbstractInfUnitRange}}) = LazyArrayStyle{2}()
239241

‎test/runtests.jl

+4
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,12 @@ end
517517

518518
@test Eye{Int}(∞) * D Eye{Int}(∞) * D D
519519
@test Eye(∞) * D == Eye(∞) * D == D
520+
@test Eye(∞) == Eye(∞)^0 == Eye(∞)^1 == Eye(∞)^2 == one(Eye(∞)) == copy(Eye(∞)) == one(Diagonal(Fill(2,∞)))
521+
@test Diagonal(Fill(2,∞)) == copy(Diagonal(Fill(2,∞)))
522+
520523

521524
@test permutedims(D) D
525+
522526
end
523527

524528
@testset "concat" begin

2 commit comments

Comments
 (2)

dlfivefifty commented on Mar 7, 2021

@dlfivefifty
Member

JuliaRegistrator commented on Mar 7, 2021

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/31433

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.4 -m "<description of version>" 058032d4bc192e28771ea4cbba8144ea4d163a17
git push origin v0.10.4
Please sign in to comment.