lapack: rename EVSide consts

This commit is contained in:
Vladimir Chalupecky
2018-08-22 14:46:17 +02:00
committed by Vladimír Chalupecký
parent d3817b5e18
commit 7ef6056c6f
6 changed files with 36 additions and 37 deletions

View File

@@ -178,14 +178,13 @@ const (
EigenvaluesAndSchur SchurJob = 'S'
)
// EVSide specifies what eigenvectors will be computed.
// EVSide specifies what eigenvectors are computed in Dtrevc3.
type EVSide byte
// EVSide constants for Dtrevc3.
const (
RightEV EVSide = 'R' // Compute right eigenvectors only.
LeftEV EVSide = 'L' // Compute left eigenvectors only.
RightLeftEV EVSide = 'B' // Compute both right and left eigenvectors.
EVRight EVSide = 'R' // Only right eigenvectors are computed.
EVLeft EVSide = 'L' // Only left eigenvectors are computed.
EVRightLeft EVSide = 'B' // Both right and left eigenvectors are computed.
)
// HowMany specifies which eigenvectors will be computed.