Add Dgetrs (compute a solution based on LU factorization) and test.

Responded to PR comments
This commit is contained in:
btracey
2015-08-01 23:30:43 -06:00
parent c87abc8302
commit 32bdb776ef
5 changed files with 199 additions and 0 deletions

View File

@@ -23,3 +23,7 @@ func TestDgetf2(t *testing.T) {
func TestDgetrf(t *testing.T) {
testlapack.DgetrfTest(t, impl)
}
func TestDgetrs(t *testing.T) {
testlapack.DgetrsTest(t, impl)
}