consts.go 402 B

123456789101112131415
  1. // Copyright ©2016 The Gonum Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package mat
  5. // TriKind represents the triangularity of the matrix.
  6. type TriKind bool
  7. const (
  8. // Upper specifies an upper triangular matrix.
  9. Upper TriKind = true
  10. // Lower specifies a lower triangular matrix.
  11. Lower TriKind = false
  12. )