lapack: add SchurJob type

This commit is contained in:
Vladimir Chalupecky
2018-08-22 14:39:59 +02:00
committed by Vladimír Chalupecký
parent a6f3f37374
commit d3817b5e18
4 changed files with 13 additions and 9 deletions

View File

@@ -170,10 +170,12 @@ const (
PermuteScale BalanceJob = 'B'
)
// Job constants for Dhseqr.
// SchurJob specifies whether the Schur form is computed in Dhseqr.
type SchurJob byte
const (
EigenvaluesOnly EVJob = 'E'
EigenvaluesAndSchur EVJob = 'S'
EigenvaluesOnly SchurJob = 'E'
EigenvaluesAndSchur SchurJob = 'S'
)
// EVSide specifies what eigenvectors will be computed.