lapack,native,cgo: rename JobEV to EVJob

This commit is contained in:
Vladimir Chalupecky
2016-10-06 14:30:11 +09:00
parent fd57e99f9e
commit f4dbaaea62
5 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ import (
)
type Dsyever interface {
Dsyev(jobz lapack.JobEV, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
Dsyev(jobz lapack.EVJob, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
}
func DsyevTest(t *testing.T, impl Dsyever) {