lapack: remove EigValueOnly constant

'None' can be used instead.
This commit is contained in:
Vladimir Chalupecky
2016-10-08 22:43:48 +09:00
parent a4494d8e8d
commit f3d79efebc
3 changed files with 4 additions and 6 deletions

View File

@@ -112,8 +112,6 @@ const (
type EigComp byte
const (
// EigValueOnly specifies to compute only the eigenvalues of the input matrix.
EigValueOnly EigComp = 'N'
// EigDecomp specifies to compute the eigenvalues and eigenvectors of the
// full symmetric matrix.
EigDecomp EigComp = 'V'