deprecated.go 961 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright ©2020 The Gonum Authors. All rights reserved.
  2. // Use of this code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // TODO(kortschak): Delete this file for v0.9.0.
  5. package floats
  6. import "gonum.org/v1/gonum/floats/scalar"
  7. var (
  8. // Deprecated: Use scalar.EqualWithinAbs.
  9. EqualWithinAbs = scalar.EqualWithinAbs
  10. // Deprecated: Use scalar.EqualWithinAbsOrRel.
  11. EqualWithinAbsOrRel = scalar.EqualWithinAbsOrRel
  12. // Deprecated: Use scalar.EqualWithinRel.
  13. EqualWithinRel = scalar.EqualWithinRel
  14. // Deprecated: Use scalar.EqualWithinULP.
  15. EqualWithinULP = scalar.EqualWithinULP
  16. // Deprecated: Use scalar.NaNPayload.
  17. NaNPayload = scalar.NaNPayload
  18. // Deprecated: Use scalar.NaNWith.
  19. NaNWith = scalar.NaNWith
  20. // Deprecated: Use scalar.ParseWithNA.
  21. ParseWithNA = scalar.ParseWithNA
  22. // Deprecated: Use scalar.Round.
  23. Round = scalar.Round
  24. // Deprecated: Use scalar.RoundEven.
  25. RoundEven = scalar.RoundEven
  26. )