mirror of
https://github.com/gonum/gonum.git
synced 2025-10-23 15:13:31 +08:00
Fix
This commit is contained in:
@@ -6,11 +6,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Dtrti2 computes the inverse of a triangular matrix, storing the result in place
|
// 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.
|
// 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) {
|
func (impl Implementation) Dtrti2(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int) {
|
||||||
checkMatrix(n, n, a, lda)
|
checkMatrix(n, n, a, lda)
|
||||||
if uplo != blas.Upper && uplo != blas.Lower {
|
if uplo != blas.Upper && uplo != blas.Lower {
|
||||||
|
@@ -116,17 +116,12 @@ func TestDtrcon(t *testing.T) {
|
|||||||
testlapack.DtrconTest(t, impl)
|
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) {
|
func TestDtrti2(t *testing.T) {
|
||||||
testlapack.Dtrti2Test(t, impl)
|
testlapack.Dtrti2Test(t, impl)
|
||||||
>>>>>>> e131d240e5e881fdfa8d62252d1825c4bcee1745
|
}
|
||||||
|
|
||||||
|
func TestDtrtri(t *testing.T) {
|
||||||
|
testlapack.DtrtriTest(t, impl)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestIladlc(t *testing.T) {
|
func TestIladlc(t *testing.T) {
|
||||||
|
@@ -14,11 +14,7 @@ type Dtrti2er interface {
|
|||||||
Dtrti2(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int)
|
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) {
|
func Dtrti2Test(t *testing.T, impl Dtrti2er) {
|
||||||
>>>>>>> e131d240e5e881fdfa8d62252d1825c4bcee1745
|
|
||||||
for _, test := range []struct {
|
for _, test := range []struct {
|
||||||
a []float64
|
a []float64
|
||||||
n int
|
n int
|
||||||
|
Reference in New Issue
Block a user