Add Dlasrt

This commit is contained in:
btracey
2015-10-12 23:36:34 -06:00
parent 28f483e1da
commit fbd14d97f3
2 changed files with 35 additions and 0 deletions

View File

@@ -50,6 +50,14 @@ const (
Backward Direct = 'B' // Reflectors are left-multiplied, H_k * ... * H_2 * H_1
)
// Sort is the sorting order.
type Sort byte
const (
SortIncreasing Sort = 'I'
SortDecreasing Sort = 'D'
)
// StoreV indicates the storage direction of elementary reflectors.
type StoreV byte