lapack,cgo: rename CompSV to Comp

Partly addresses #160 and #163
This commit is contained in:
Vladimir Chalupecky
2016-08-22 09:25:04 +09:00
parent f1586e13b3
commit 0f31af6e33
4 changed files with 37 additions and 43 deletions

View File

@@ -10,13 +10,7 @@ const None = 'N'
type Job byte
// CompSV determines if the singular values are to be computed in compact form.
type CompSV byte
const (
Compact CompSV = 'P'
Explicit CompSV = 'I'
)
type Comp byte
// Complex128 defines the public complex128 LAPACK API supported by gonum/lapack.
type Complex128 interface{}