mirror of
https://github.com/gonum/gonum.git
synced 2025-10-27 09:11:08 +08:00
testlapack: quieten vet for unkeyed composite literals in importable code
This commit is contained in:
committed by
Dan Kortschak
parent
26c60db8b2
commit
3f94af49e6
@@ -48,7 +48,7 @@ func Dorg2lTest(t *testing.T, impl Dorg2ler) {
|
||||
impl.Dgeql2(m, n, a, lda, tau, work)
|
||||
|
||||
impl.Dorg2l(m, n, k, a, lda, tau[n-k:], work)
|
||||
if !hasOrthonormalColumns(blas64.General{m, n, a, lda}) {
|
||||
if !hasOrthonormalColumns(blas64.General{Rows: m, Cols: n, Data: a, Stride: lda}) {
|
||||
t.Errorf("Case m=%v, n=%v, k=%v: columns of Q not orthonormal", m, n, k)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user