all: fix build and make tests pass with new streams

This commit is contained in:
kortschak
2017-11-17 12:38:53 +10:30
parent fa0c5aa7bc
commit 54a5f6f081
16 changed files with 59 additions and 55 deletions

View File

@@ -533,7 +533,7 @@ func DgeevTest(t *testing.T, impl Dgeever) {
a: a,
evWant: ev,
valTol: 1e-12,
vecTol: 1e-8,
vecTol: 1e-7,
}
testDgeev(t, impl, "random", test, jobvl, jobvr, 0, optimumWork)
}
@@ -543,7 +543,7 @@ func DgeevTest(t *testing.T, impl Dgeever) {
}
func testDgeev(t *testing.T, impl Dgeever, tc string, test dgeevTest, jobvl lapack.LeftEVJob, jobvr lapack.RightEVJob, extra int, wl worklen) {
const defaultTol = 1e-13
const defaultTol = 1e-12
valTol := test.valTol
if valTol == 0 {
valTol = defaultTol