Skip to content

Commit 46bc6f9

Browse files
remember to namespace for overload
1 parent 00f805f commit 46bc6f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/operations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ Base.:*(A::SparseMatrixCSC{Tx,S}, x::StridedVector{Operation}) where {Tx,S} =
7979
Base.:*(A::SparseMatrixCSC{Operation,S}, x::StridedVector{Tx}) where {Tx,S} =
8080
(T = LinearAlgebra.promote_op(LinearAlgebra.matprod, Operation, Tx); mul!(similar(x, T, A.m), A, x, true, false))
8181

82-
function det(O::Operation)
82+
function LinearAlgebra.det(O::Operation)
8383
det(lu(O,Val(false)))
8484
end

0 commit comments

Comments
 (0)