@@ -55,7 +55,7 @@ Creates an empty sparse matrix with element type `Tv` and integer type `Ti` of s
55
55
SparseMatrixCSC {Tv,Ti} (:: UndefInitializer , m:: Integer , n:: Integer ) where {Tv, Ti} = spzeros (Tv, Ti, m, n)
56
56
57
57
"""
58
- ` FixedSparseCSC{Tv,Ti<:Integer} <: AbstractSparseMatrixCSC{Tv,Ti}`
58
+ FixedSparseCSC{Tv,Ti<:Integer} <: AbstractSparseMatrixCSC{Tv,Ti}
59
59
60
60
Experimental AbstractSparseMatrixCSC whose non-zero index are fixed.
61
61
"""
@@ -94,21 +94,21 @@ FixedSparseCSC{Tv,Ti}(x::AbstractSparseMatrixCSC) where {Tv,Ti} =
94
94
getcolptr (x), rowvals (x), nonzeros (x))
95
95
96
96
"""
97
- ` fixed(x...)`
97
+ fixed(x...)
98
98
99
99
Experimental. Like `sparse` but returns a sparse array whose `_is_fixed` is `true`.
100
100
"""
101
101
fixed (x... ) = move_fixed (sparse (x... ))
102
102
fixed (x:: AbstractSparseMatrixCSC ) = FixedSparseCSC (x)
103
103
104
104
"""
105
- ` move_fixed(x::AbstractSparseMatrixCSC)`
105
+ move_fixed(x::AbstractSparseMatrixCSC)
106
106
107
107
Experimental, unsafe. Make a `FixedSparseCSC` by reusing the colptr, rowvals and nonzeros of `x`.
108
108
"""
109
109
move_fixed (x:: AbstractSparseMatrixCSC ) = FixedSparseCSC (size (x)... , getcolptr (x), rowvals (x), nonzeros (x))
110
110
"""
111
- ` _unsafe_unfix(x)`
111
+ _unsafe_unfix(x)
112
112
113
113
Experimental, unsafe. Returns a modifiable version of `x` for compatibility with this codebase.
114
114
"""
@@ -118,7 +118,7 @@ _unsafe_unfix(x::SparseMatrixCSC) = x
118
118
const SorF = Union{<: SparseMatrixCSC , <: FixedSparseCSC }
119
119
120
120
"""
121
- ` SparseMatrixCSC(x::FixedSparseCSC)`
121
+ SparseMatrixCSC(x::FixedSparseCSC)
122
122
123
123
Get a writable copy of x. See `_unsafe_unfix(x)`
124
124
"""
0 commit comments