lapack,native: rename EigDecomp and EigBoth consts to OriginalEV and TridiagEV

As a side effect fix the documentation of Dsteqr which has the description
reversed.
This commit is contained in:
Vladimir Chalupecky
2016-10-08 23:27:38 +09:00
parent c02fe3f6ff
commit 0c9ab78926
3 changed files with 17 additions and 16 deletions

View File

@@ -112,12 +112,12 @@ const (
type EVComp byte
const (
// EigDecomp specifies to compute the eigenvalues and eigenvectors of the
// full symmetric matrix.
EigDecomp EVComp = 'V'
// EigBoth specifies to compute both the eigenvalues and eigenvectors of the
// input tridiagonal matrix.
EigBoth EVComp = 'I'
// OriginalEV specifies to compute the eigenvectors of the original
// matrix.
OriginalEV EVComp = 'V'
// TridiagEV specifies to compute both the eigenvectors of the input
// tridiagonal matrix.
TridiagEV EVComp = 'I'
)
// Job types for computation of eigenvectors.