diff --git a/src/coo_types.jl b/src/coo_types.jl index 07b7caf..11c4509 100644 --- a/src/coo_types.jl +++ b/src/coo_types.jl @@ -7,7 +7,7 @@ Supertype for matrix in sparse coordinate format (COO). """ abstract type AbstractSparseMatrixCOO{Tv, Ti <: Integer} <: AbstractSparseMatrix{Tv, Ti} end -mutable struct SparseMatrixCOO{Tv, Ti <: Integer} <: AbstractSparseMatrixCOO{Tv, Ti} +struct SparseMatrixCOO{Tv, Ti <: Integer} <: AbstractSparseMatrixCOO{Tv, Ti} m::Int n::Int rows::Vector{Ti}