mirror of
https://github.com/gonum/gonum.git
synced 2025-10-08 00:20:11 +08:00
matrix/mat64: fix wrong return statement
This commit is contained in:
@@ -418,8 +418,8 @@ func copySymIntoTriangle(t *TriDense, s Symmetric) {
|
||||
for j := i; j < n; j++ {
|
||||
t.mat.Data[i*ts+j] = sd.Data[j*ss+i]
|
||||
}
|
||||
return
|
||||
}
|
||||
return
|
||||
}
|
||||
if sd.Uplo == blas.Upper {
|
||||
for i := 0; i < n; i++ {
|
||||
|
Reference in New Issue
Block a user