mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 07:06:54 +08:00
testlapack: print byte constants as chars
This commit is contained in:

committed by
Vladimír Chalupecký

parent
939a2b38a3
commit
3973e30147
@@ -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)
|
||||
|
Reference in New Issue
Block a user