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

@@ -33,7 +33,7 @@ type Float64 interface {
Dormlq(side blas.Side, trans blas.Transpose, m, n, k int, a []float64, lda int, tau, c []float64, ldc int, work []float64, lwork int)
Dpocon(uplo blas.Uplo, n int, a []float64, lda int, anorm float64, work []float64, iwork []int) float64
Dpotrf(ul blas.Uplo, n int, a []float64, lda int) (ok bool)
Dsyev(jobz JobEV, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
Dsyev(jobz EVJob, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
Dtrcon(norm MatrixNorm, uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int, work []float64, iwork []int) float64
Dtrtri(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int) (ok bool)
Dtrtrs(uplo blas.Uplo, trans blas.Transpose, diag blas.Diag, n, nrhs int, a []float64, lda int, b []float64, ldb int) (ok bool)
@@ -122,11 +122,11 @@ const (
EigBoth EigComp = 'I'
)
// JobEV specifies whether eigenvectors will be computed in Dsyev.
type JobEV byte
// EVJob specifies whether eigenvectors will be computed in Dsyev.
type EVJob byte
// ComputeEV specifies that eigenvectors will be computed in Dsyev.
const ComputeEV JobEV = 'V'
const ComputeEV EVJob = 'V'
// Jobs for Dgebal.
const (