lapack: add BalanceJob type

This commit is contained in:
Vladimir Chalupecky
2018-08-20 18:41:53 +02:00
committed by Vladimír Chalupecký
parent 929014505b
commit 1ec00850c6
6 changed files with 17 additions and 15 deletions

View File

@@ -155,11 +155,13 @@ const (
ComputeRightEV RightEVJob = 'V' // Compute right eigenvectors.
)
// Jobs for Dgebal.
// BalanceJob specifies matrix balancing operation.
type BalanceJob byte
const (
Permute Job = 'P'
Scale Job = 'S'
PermuteScale Job = 'B'
Permute BalanceJob = 'P'
Scale BalanceJob = 'S'
PermuteScale BalanceJob = 'B'
)
// Job constants for Dhseqr.