testlapack: make tests independent

This commit is contained in:
kortschak
2016-02-15 14:23:02 +10:30
parent 1d7a2a405a
commit 3d87f56b23
52 changed files with 158 additions and 106 deletions

View File

@@ -18,6 +18,7 @@ type Dorg2rer interface {
}
func Dorg2rTest(t *testing.T, impl Dorg2rer) {
rnd := rand.New(rand.NewSource(1))
for _, test := range []struct {
m, n, k, lda int
}{
@@ -39,7 +40,7 @@ func Dorg2rTest(t *testing.T, impl Dorg2rer) {
}
a := make([]float64, m*lda)
for i := range a {
a[i] = rand.NormFloat64()
a[i] = rnd.NormFloat64()
}
k := min(m, n)
tau := make([]float64, k)