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 @@ -630,14 +630,14 @@ end
630630 dest[col, col] = U[BandIndex (0 ,col)]
631631 dest
632632end
633- @propagate_inbounds function copyto_unaliased_stored! (dest, U :: LowerTriangular , col)
633+ @propagate_inbounds function copyto_unaliased_stored! (dest, L :: LowerTriangular , col)
634634 for row in col: lastindex (dest,1 )
635635 dest[row,col] = L. data[row,col]
636636 end
637637 dest
638638end
639- @propagate_inbounds function copyto_unaliased_stored! (dest, U :: UnitLowerTriangular , col)
640- dest[col, col] = U [BandIndex (0 ,col)]
639+ @propagate_inbounds function copyto_unaliased_stored! (dest, L :: UnitLowerTriangular , col)
640+ dest[col, col] = L [BandIndex (0 ,col)]
641641 for row in col+ 1 : lastindex (dest,1 )
642642 dest[row,col] = L. data[row,col]
643643 end
You can’t perform that action at this time.
0 commit comments