diff options
Diffstat (limited to 'libgo/go/math/const.go')
-rw-r--r-- | libgo/go/math/const.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libgo/go/math/const.go b/libgo/go/math/const.go index 6a78d00..b53527a 100644 --- a/libgo/go/math/const.go +++ b/libgo/go/math/const.go @@ -25,13 +25,13 @@ const ( // Floating-point limit values. // Max is the largest finite value representable by the type. -// Min is the smallest nonzero value representable by the type. +// SmallestNonzero is the smallest positive, non-zero value representable by the type. const ( - MaxFloat32 = 3.40282346638528859811704183484516925440e+38 /* 2**127 * (2**24 - 1) / 2**23 */ - MinFloat32 = 1.401298464324817070923729583289916131280e-45 /* 1 / 2**(127 - 1 + 23) */ + MaxFloat32 = 3.40282346638528859811704183484516925440e+38 /* 2**127 * (2**24 - 1) / 2**23 */ + SmallestNonzeroFloat32 = 1.401298464324817070923729583289916131280e-45 /* 1 / 2**(127 - 1 + 23) */ - MaxFloat64 = 1.797693134862315708145274237317043567981e+308 /* 2**1023 * (2**53 - 1) / 2**52 */ - MinFloat64 = 4.940656458412465441765687928682213723651e-324 /* 1 / 2**(1023 - 1 + 52) */ + MaxFloat64 = 1.797693134862315708145274237317043567981e+308 /* 2**1023 * (2**53 - 1) / 2**52 */ + SmallestNonzeroFloat64 = 4.940656458412465441765687928682213723651e-324 /* 1 / 2**(1023 - 1 + 52) */ ) // Integer limit values. |