Skip to content

Commit 69f6722

Browse files
committed
import * operator
1 parent 01ffb20 commit 69f6722

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/SparseMatricesCSR.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This module contains:
1717
+ `getindices`: Return the indices array of a SparseMatrix (`rowval` or `colval` depending on the SparseMatrix type)
1818
1919
- Overloaded procedures:
20+
+ `+`: SparseMatrix-Vector product.
2021
+ `mul!`: SparseMatrix-Vector product.
2122
+ `nnz`: Return the number of stored (filled) elements in a sparse array.
2223
+ `nonzeros`: Return `nzval` array.
@@ -30,7 +31,7 @@ module SparseMatricesCSR
3031
using SparseArrays
3132
using LinearAlgebra
3233

33-
import Base: size, getindex, show, count
34+
import Base: size, getindex, show, count, *
3435
import LinearAlgebra: mul!
3536
import SparseArrays: nnz, getnzval, nonzeros, nzrange, findnz, rowvals
3637

0 commit comments

Comments
 (0)