This commit is contained in:
btracey
2015-09-12 22:11:05 -06:00
parent 6aea049391
commit 8f06ad68cf
3 changed files with 4 additions and 17 deletions

View File

@@ -6,11 +6,7 @@ import (
)
// Dtrti2 computes the inverse of a triangular matrix, storing the result in place
<<<<<<< HEAD
// into a.
=======
// into a. This is the BLAS level 2 version of the algorithm.
>>>>>>> e131d240e5e881fdfa8d62252d1825c4bcee1745
func (impl Implementation) Dtrti2(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int) {
checkMatrix(n, n, a, lda)
if uplo != blas.Upper && uplo != blas.Lower {

View File

@@ -116,17 +116,12 @@ func TestDtrcon(t *testing.T) {
testlapack.DtrconTest(t, impl)
}
<<<<<<< HEAD
func TestDtrtri2(t *testing.T) {
testlapack.Dtrtri2Test(t, impl)
=======
func TestDtrtri(t *testing.T) {
testlapack.DtrtriTest(t, impl)
}
func TestDtrti2(t *testing.T) {
testlapack.Dtrti2Test(t, impl)
>>>>>>> e131d240e5e881fdfa8d62252d1825c4bcee1745
}
func TestDtrtri(t *testing.T) {
testlapack.DtrtriTest(t, impl)
}
func TestIladlc(t *testing.T) {

View File

@@ -14,11 +14,7 @@ type Dtrti2er interface {
Dtrti2(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int)
}
<<<<<<< HEAD
func Dtrtri2Test(t *testing.T, impl Dtrti2er) {
=======
func Dtrti2Test(t *testing.T, impl Dtrti2er) {
>>>>>>> e131d240e5e881fdfa8d62252d1825c4bcee1745
for _, test := range []struct {
a []float64
n int