Skip to content

Commit e2d82c9

Browse files
committed
replace sparse by SparseMatrixCSC
1 parent 491630f commit e2d82c9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ExtendableSparse"
22
uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
33
authors = ["Juergen Fuhrmann <juergen.fuhrmann@wias-berlin.de>"]
4-
version = "1.0.0"
4+
version = "1.0.1"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"

docs/src/changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changes
22

3-
## v0.9.7, Jan 22, 2023
4-
3+
## v1.0.1, Jan 22, 2023
54
- support of AbstractSparseMatrixCSC interface
5+
- replace SparseArrays.sparse by SparseArrays.SparseMatrixCSC
66

77
## v0.9.6, Jan 22, 2023
88

src/extendable.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,18 @@ end
109109
# transpose(sparse(parent(text)))
110110
# end
111111

112+
112113
"""
113114
$(SIGNATURES)
114115
115116
Create SparseMatrixCSC from ExtendableSparseMatrix
116117
"""
117-
function SparseArrays.sparse(A::ExtendableSparseMatrix)
118+
function SparseArrays.SparseMatrixCSC(A::ExtendableSparseMatrix)
118119
flush!(A)
119120
A.cscmatrix
120121
end
121122

123+
122124
"""
123125
$(SIGNATURES)
124126

0 commit comments

Comments
 (0)