cgo: add Dlarf[bgt]

This commit is contained in:
kortschak
2016-06-10 16:16:31 +09:30
parent a12f2ae184
commit 8b8be085c7
2 changed files with 156 additions and 0 deletions

View File

@@ -52,6 +52,18 @@ func TestDlange(t *testing.T) {
testlapack.DlangeTest(t, impl)
}
func TestDlarfb(t *testing.T) {
testlapack.DlarfbTest(t, impl)
}
func TestDlarfg(t *testing.T) {
testlapack.DlarfgTest(t, impl)
}
func TestDlarft(t *testing.T) {
testlapack.DlarftTest(t, impl)
}
func TestDlantr(t *testing.T) {
testlapack.DlantrTest(t, impl)
}