mirror of
https://github.com/gonum/gonum.git
synced 2025-10-23 15:13:31 +08:00
lapack: rename EigComp to EVComp
This follows the naming style of EVJob and EVSide.
This commit is contained in:
@@ -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
|
||||
}{
|
||||
|
Reference in New Issue
Block a user