zero index remaining occurences

This commit is contained in:
Vladimir Chalupecky
2016-04-18 11:14:48 +09:00
parent 7c9410be91
commit cae2fd60d5
2 changed files with 5 additions and 5 deletions

View File

@@ -48,8 +48,8 @@ type Float64 interface {
type Direct byte
const (
Forward Direct = 'F' // Reflectors are right-multiplied, H(0) * H(1) * ... * H(k).
Backward Direct = 'B' // Reflectors are left-multiplied, H(k) * ... * H(1) * H(0).
Forward Direct = 'F' // Reflectors are right-multiplied, H(0) * H(1) * ... * H(k-1).
Backward Direct = 'B' // Reflectors are left-multiplied, H(k-1) * ... * H(1) * H(0).
)
// Sort is the sorting order.