Skip to content

Commit 8eb12d5

Browse files
author
Wimmerer
committed
fix triu/tril
1 parent c07ec89 commit 8eb12d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/operations/select.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ function select(
6161
return C
6262
end
6363

64-
LinearAlgebra.tril = select(SelectOps.TRIL, A)
65-
LinearAlgebra.triu = select(SelectOps.TRIU, A)
64+
LinearAlgebra.tril(A::GBArray) = select(SelectOps.TRIL, A)
65+
LinearAlgebra.triu(A::GBArray) = select(SelectOps.TRIU, A)

0 commit comments

Comments
 (0)