2010-02-09 14:33:12 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package math
|
|
|
|
|
|
|
|
// Nextafter returns the next representable value after x towards y.
|
|
|
|
// If x == y, then x is returned.
|
|
|
|
//
|
|
|
|
// Special cases are:
|
2011-12-12 13:51:11 -07:00
|
|
|
// Nextafter(NaN, y) = NaN
|
|
|
|
// Nextafter(x, NaN) = NaN
|
2010-02-09 14:33:12 -07:00
|
|
|
func Nextafter(x, y float64) (r float64) {
|
|
|
|
switch {
|
2012-02-01 08:08:31 -07:00
|
|
|
case IsNaN(x) || IsNaN(y): // special case
|
2010-02-09 14:33:12 -07:00
|
|
|
r = NaN()
|
|
|
|
case x == y:
|
|
|
|
r = x
|
|
|
|
case x == 0:
|
|
|
|
r = Copysign(Float64frombits(1), y)
|
|
|
|
case (y > x) == (x > 0):
|
|
|
|
r = Float64frombits(Float64bits(x) + 1)
|
|
|
|
default:
|
|
|
|
r = Float64frombits(Float64bits(x) - 1)
|
|
|
|
}
|
2011-12-12 13:51:11 -07:00
|
|
|
return
|
2010-02-09 14:33:12 -07:00
|
|
|
}
|