Merge branch 'master' of http://github.com/gonum/lapack into adddsytrd

This commit is contained in:
btracey
2016-02-12 10:16:08 -07:00
10 changed files with 479 additions and 25 deletions

View File

@@ -36,6 +36,10 @@ func TestDgelq2(t *testing.T) {
testlapack.Dgelq2Test(t, impl)
}
func TestDgeql2(t *testing.T) {
testlapack.Dgeql2Test(t, impl)
}
func TestDgels(t *testing.T) {
testlapack.DgelsTest(t, impl)
}
@@ -164,6 +168,10 @@ func TestDorgbr(t *testing.T) {
testlapack.DorgbrTest(t, impl)
}
func TestDorg2l(t *testing.T) {
testlapack.Dorg2lTest(t, impl)
}
func TestDorgl2(t *testing.T) {
testlapack.Dorgl2Test(t, impl)
}
@@ -172,6 +180,10 @@ func TestDorglq(t *testing.T) {
testlapack.DorglqTest(t, impl)
}
func TestDorgql(t *testing.T) {
testlapack.DorgqlTest(t, impl)
}
func TestDorgqr(t *testing.T) {
testlapack.DorgqrTest(t, impl)
}