lapack: rename EigComp to EVComp

This follows the naming style of EVJob and EVSide.
This commit is contained in:
Vladimir Chalupecky
2016-10-08 22:58:37 +09:00
parent f3d79efebc
commit a219b045f0
6 changed files with 11 additions and 11 deletions

View File

@@ -15,13 +15,13 @@ import (
)
type Dsteqrer interface {
Dsteqr(compz lapack.EigComp, n int, d, e, z []float64, ldz int, work []float64) (ok bool)
Dsteqr(compz lapack.EVComp, n int, d, e, z []float64, ldz int, work []float64) (ok bool)
Dorgtrer
}
func DsteqrTest(t *testing.T, impl Dsteqrer) {
rnd := rand.New(rand.NewSource(1))
for _, compz := range []lapack.EigComp{lapack.EigDecomp, lapack.EigBoth} {
for _, compz := range []lapack.EVComp{lapack.EigDecomp, lapack.EigBoth} {
for _, test := range []struct {
n, lda int
}{