testlapack: print byte constants as chars

This commit is contained in:
Vladimir Chalupecky
2020-02-22 00:04:09 +01:00
committed by Vladimír Chalupecký
parent 939a2b38a3
commit 3973e30147
11 changed files with 11 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ func dgeconTest(t *testing.T, impl Dgeconer, rnd *rand.Rand, n, lda int) {
}
for _, norm := range []lapack.MatrixNorm{lapack.MaxColumnSum, lapack.MaxRowSum} {
name := fmt.Sprintf("norm%v,n=%v,lda=%v", string(norm), n, lda)
name := fmt.Sprintf("norm=%v,n=%v,lda=%v", string(norm), n, lda)
// Compute the norm of A and A^{-1}.
aNorm := impl.Dlange(norm, n, n, a, lda, work)