Skip to content

Commit 549ab13

Browse files
committed
Using Int32 in default sparse matrix
1 parent 0967579 commit 549ab13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FESpaces/SparseMatrixAssemblers.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ end
190190
"""
191191
function SparseMatrixAssembler(trial::FESpace,test::FESpace)
192192
T = get_dof_value_type(trial)
193-
matrix_type = SparseMatrixCSC{T,Int}
193+
matrix_type = SparseMatrixCSC{T,Int32}
194194
vector_type = Vector{T}
195195
strategy = DefaultAssemblyStrategy()
196196
rows = get_free_dof_ids(test)

0 commit comments

Comments
 (0)