We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330ef1c commit ea3bf67Copy full SHA for ea3bf67
src/abstractblocksparsearray/abstractblocksparsematrix.jl
@@ -8,7 +8,7 @@ function eigencopy_oftype(A::AbstractBlockSparseMatrix, T)
8
if is_block_permutation_matrix(A)
9
Acopy = similar(A, T)
10
for bI in eachblockstoredindex(A)
11
- Acopy[bI] = eigencopy_oftype(A[bI], T)
+ Acopy[bI] = eigencopy_oftype(@view!(A[bI]), T)
12
end
13
return Acopy
14
else
0 commit comments