testlapack: quieten vet for unkeyed composite literals in importable code

This commit is contained in:
Dan Kortschak
2018-09-01 22:24:59 +09:30
committed by Dan Kortschak
parent 26c60db8b2
commit 3f94af49e6
7 changed files with 19 additions and 19 deletions

View File

@@ -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)
}
}