File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -641,14 +641,14 @@ end
641641 dest[col, col] = U[BandIndex (0 ,col)]
642642 dest
643643end
644- @propagate_inbounds function copy_unaliased_stored! (dest, U :: LowerTriangular , col)
644+ @propagate_inbounds function copy_unaliased_stored! (dest, L :: LowerTriangular , col)
645645 for row in col: lastindex (dest,1 )
646646 dest[row,col] = L. data[row,col]
647647 end
648648 dest
649649end
650- @propagate_inbounds function copy_unaliased_stored! (dest, U :: UnitLowerTriangular , col)
651- dest[col, col] = U [BandIndex (0 ,col)]
650+ @propagate_inbounds function copy_unaliased_stored! (dest, L :: UnitLowerTriangular , col)
651+ dest[col, col] = L [BandIndex (0 ,col)]
652652 for row in col+ 1 : lastindex (dest,1 )
653653 dest[row,col] = L. data[row,col]
654654 end
You can’t perform that action at this time.
0 commit comments