Skip to content

Commit 5767139

Browse files
authored
Add mul methods for AbstractTriangular of LayoutMatrix (#194)
* Add mul for AbstractTriangular of LayoutMatrix * Bump version to v1.5.0
1 parent d8c7717 commit 5767139

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ArrayLayouts"
22
uuid = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "1.4.5"
4+
version = "1.5.0"
55

66
[deps]
77
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"

src/mul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ macro layoutmul(Typ)
252252
(*)(A::$Typ, B::LinearAlgebra.$Struc) = ArrayLayouts.mul(A,B)
253253
end
254254
end
255-
for Mod in (:Adjoint, :Transpose, :Symmetric, :Hermitian)
255+
for Mod in (:Adjoint, :Transpose, :Symmetric, :Hermitian, :AbstractTriangular)
256256
ret = quote
257257
$ret
258258

0 commit comments

Comments
 (0)