File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11name = " ArrayLayouts"
22uuid = " 4c555306-a7a7-4459-81d9-ec55ddd5c99a"
33authors = [" Sheehan Olver <solver@mac.com>" ]
4- version = " 0.8.3 "
4+ version = " 0.8.4 "
55
66[deps ]
77FillArrays = " 1a297f60-69ca-5386-bcde-b61e274b549b"
Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ macro _layoutldiv(Typ)
158158 Base.:/ (A:: $Typ , x:: AbstractMatrix ) = ArrayLayouts. rdiv (A,x)
159159
160160 Base.:/ (x:: AbstractMatrix , A:: $Typ ) = ArrayLayouts. rdiv (x,A)
161- Base.:/ (x:: Diagonal , A:: $Typ ) = ArrayLayouts. rdiv (x,A)
161+ Base.:/ (D:: Diagonal , A:: $Typ ) = ArrayLayouts. rdiv (D,A)
162+ Base.:/ (A:: $Typ , D:: Diagonal ) = ArrayLayouts. rdiv (A,D)
162163
163164 Base.:/ (x:: $Typ , A:: $Typ ) = ArrayLayouts. rdiv (x,A)
164165 end
Original file line number Diff line number Diff line change @@ -262,6 +262,7 @@ MemoryLayout(::Type{MyVector}) = DenseColumnMajor()
262262 @test D\ B̃ ≈ Matrix (D)\ B̃
263263 @test B̃\ D ≈ B̃\ Matrix (D)
264264 @test D\ D̃ ≈ D̃\ D
265+ @test B̃/ D ≈ B̃/ Matrix (D)
265266 end
266267
267268 @testset " Adj/Trans" begin
You can’t perform that action at this time.
0 commit comments