lapack: rename ComputeEV and add EVNone

This commit is contained in:
Vladimir Chalupecky
2018-08-22 13:41:29 +02:00
committed by Vladimír Chalupecký
parent 0d92706921
commit de667f08e7
5 changed files with 26 additions and 13 deletions

View File

@@ -55,9 +55,9 @@ func DsyevTest(t *testing.T, impl Dsyever) {
}
work := make([]float64, 1)
impl.Dsyev(lapack.ComputeEV, uplo, n, a, lda, w, work, -1)
impl.Dsyev(lapack.EVCompute, uplo, n, a, lda, w, work, -1)
work = make([]float64, int(work[0]))
impl.Dsyev(lapack.ComputeEV, uplo, n, a, lda, w, work, len(work))
impl.Dsyev(lapack.EVCompute, uplo, n, a, lda, w, work, len(work))
// Check that the decomposition is correct
orig := blas64.General{