- bd6dfe9 math/big: add a comment for SetMantExp by surechen · 4 years, 10 months ago
- c505865 math/big: document that Sqrt doesn't set Accuracy by Alberto Donizetti · 5 years ago
- 3813edf all: use "reports whether" consistently in the few places that didn't by Brad Fitzpatrick · 6 years ago
- c86d464 math/big: shallow copies of Int/Rat/Float are not supported (documentation) by Robert Griesemer · 6 years ago
- f90e89e all: fix a bunch of misspellings by Igor Zhilianin · 6 years ago
- d31cad7 math/big: round x + (-x) to -0 for mode ToNegativeInf by Brian Kessler · 7 years ago
- 161874d all: update comment URLs from HTTP to HTTPS, where possible by Tim Cooper · 7 years ago
- 497f891 math/big: recognize squaring for Floats by Brian Kessler · 8 years ago
- 9c7bf08 math/big: avoid unneeded sticky bit calculations by Brian Kessler · 8 years ago
- 1948b7f math/big: fix Add, Sub when receiver aliases 2nd operand by Alberto Donizetti · 8 years ago
- 70ea0ec math/big: replace local versions of bitLen, nlz with math/bits versions by Robert Griesemer · 8 years ago
- 789c525 all: remove the the duplicate words by Eitan Adler · 8 years ago
- cda633b math/big: avoid allocation in float.{Add, Sub} when there's no aliasing by Alberto Donizetti · 9 years ago
- 0da4dbe all: remove unnecessary type conversions by Matthew Dempsky · 9 years ago
- 7c86263 math/big: much simplified and faster Float rounding by Robert Griesemer · 9 years ago
- a145378 math/big: fix rounding to smallest denormal for Float.Float32/64 by Robert Griesemer · 9 years ago
- 3858efc math/big: use correct precision in Float.Float32/64 for denormals by Robert Griesemer · 9 years ago
- fdd0179 all: fix typos and spelling by Martin Möhrmann · 9 years ago
- 7e1791b math/big: fix typo by Brad Fitzpatrick · 9 years ago
- e4feb18 math/big: fix SetMantExp comment by David Crawshaw · 9 years ago
- 67ddae8 all: use one 'l' when cancelling everywhere except Solaris by Rob Pike · 10 years ago
- 49fb8cc all: minor documentation tweaks for constants by Konstantin Shaposhnikov · 10 years ago
- 783297a all: link to https for golang subdomains too by Brad Fitzpatrick · 10 years ago
- c1fed84 math/big: turn off debug mode by Robert Griesemer · 10 years ago
- a63b180 math/big: remove (*Float).Scan, ScanFloat; more robust (*Float).Parse by Robert Griesemer · 10 years ago
- 9b3d923 math/big: rename (*Float).Format to (*Float).Text by Robert Griesemer · 10 years ago
- 635cd91 math/big: more cleanups (msbxx, nlzxx functions) by Robert Griesemer · 10 years ago
- 2df1ccd math/big: Always print exponent sign when using 'p' exponent for Floats. by Robert Griesemer · 10 years ago
- 5ffbca4 math/big: fix Float.Float64 conversion for denormal corner cases by Robert Griesemer · 10 years ago
- 79afb43 math/big: fix Float.Float32 conversion for denormal corner cases by Robert Griesemer · 10 years ago
- d13f479 math/big: better doc strings for ErrNaN functionality by Robert Griesemer · 10 years ago
- b28802d math/big: make ErrNaN actually implement the error interface (oversight) by Robert Griesemer · 10 years ago
- bb29875 math/big: implement missing special cases for binary operations by Robert Griesemer · 10 years ago
- fa85a72 math/big: remove NaN support - just not worth it by Robert Griesemer · 10 years ago
- 8d267b9 math/big: fixed Float.Float64, implemented Float.Float32 by Robert Griesemer · 10 years ago
- 2c4cf2f math/big: fix known bug in Float.Float64 by Robert Griesemer · 10 years ago
- 00c73f5 math/big: cleaner handling of exponent under/overflow by Robert Griesemer · 10 years ago
- 23fd374 math/big: wrap Float.Cmp result in struct to prevent wrong use by Robert Griesemer · 10 years ago
- a4bfe64 math/big: fix minor documentation issue by Robert Griesemer · 10 years ago
- f658031 math/big: fix silly bug in Int64 accessor by Robert Griesemer · 10 years ago
- 8a6eca4 math/big: handle NaNs in Float.Cmp by Robert Griesemer · 10 years ago
- 363617c math/big: added (internal) Float.form field for easier case distinctions by Robert Griesemer · 10 years ago
- 0ff7c3e math/big: make validate a method of Float (cleanup) by Robert Griesemer · 10 years ago
- 6326940 math/big: introduce Bits abstraction instead of using "untyped" []int bit lists by Robert Griesemer · 10 years ago
- 7be32d0 math/big: reenable TestFloatAdd32 (used to fail on 32bit platforms) by Robert Griesemer · 10 years ago
- 2a1728d math/big: use stringer for enum String() methods by Robert Griesemer · 10 years ago
- 0a8a625 math/big: added Float.Add example, remove warning from Floats by Robert Griesemer · 10 years ago
- ef0b031 math/big: remove Float.Lsh/Rsh; added shift example by Robert Griesemer · 10 years ago
- d934d10 math/big: introduce Undef Accuracy, use for NaN operands/results by Robert Griesemer · 10 years ago
- ea1fafb math/big: modified MantExp semantics to enable fast exponent access by Robert Griesemer · 10 years ago
- e053883 math/big: implement NaN by Robert Griesemer · 10 years ago
- c3dc78f math/big: replace Float.NewInf with Float.SetInf for more consistent API by Robert Griesemer · 10 years ago
- 79c1295 math/big: export Float.MinPrec by Robert Griesemer · 10 years ago
- ca0be6f math/big: clean up Float.SetPrec, use shorter internal representation by Robert Griesemer · 10 years ago
- c20a018 math/big: apply a round of go vet by Robert Griesemer · 10 years ago
- bba8b89 math/big: improve some doc strings by Robert Griesemer · 10 years ago
- 88cbe09 math/big: permit passing of an *Int to Float.Int to avoid allocation by Robert Griesemer · 10 years ago
- 3e9e9b4 math/big: implemented Float.Rat by Robert Griesemer · 10 years ago
- 18fd940 math/big: permit passing of (possibly nil) *Float to MantExp to avoid allocation by Robert Griesemer · 10 years ago
- c651fdc math/big: change Float.SetMantExp to always multiply mant by 2**exp by Robert Griesemer · 10 years ago
- d9859ad math/big: fix several issues with string->Float conversion by Robert Griesemer · 10 years ago
- 2b0213d math/big: incorporated feedback from prior TBR reviews by Robert Griesemer · 10 years ago
- 61c9c3d math/big: implement fast path in Float.SetRat if argument is integer by Robert Griesemer · 10 years ago
- 2dd7a6d math/big: always round after the sign is set by Robert Griesemer · 10 years ago
- b7bfb54 math/big: fix aliasing bug in Float.Quo by Robert Griesemer · 10 years ago
- 2e3c738 math/big: remove Float.Round (not needed anymore), fix a bug in SetInt64 by Robert Griesemer · 10 years ago
- df218d3 math/big: implement/rename accessors for precision and rounding mode by Robert Griesemer · 10 years ago
- 31e8524 math/big: fix aliasing error in Add, Sub by Robert Griesemer · 10 years ago
- 7a77d8d math/big: use internal validation more consistently by Robert Griesemer · 10 years ago
- 9e9ddb0 math/big: implemented Float.Int64, simplified Float.Uint64 by Robert Griesemer · 10 years ago
- 764a9cf math/big: completed Float.Uint64 by Robert Griesemer · 10 years ago
- 64e7038 math/big: implemented Float.Int (truncation of Floats to Ints) by Robert Griesemer · 10 years ago
- 950aa9f math/big: When result prec == 0, use at least prec == 64 for SetInt, SetRat. by Robert Griesemer · 10 years ago
- f77696a math/big: implemented Frexp, Ldexp, IsInt, Copy, bug fixes, more tests by Robert Griesemer · 10 years ago
- 04ce9db math/big: correct umax by Robert Griesemer · 10 years ago
- acfe3a5 math/big: API cleanup by Robert Griesemer · 10 years ago
- 15594df math/big: handling of +/-Inf and zero precision, enable zero values by Robert Griesemer · 10 years ago
- 6966e07 math/big: fix typos by Robert Griesemer · 10 years ago
- 4c91c0d math/big: build Float.Format on top of Float.Append by Robert Griesemer · 10 years ago
- f17cd88 math/big: split float conversion routines and tests into separate files by Robert Griesemer · 10 years ago
- 9f22de7 math/big: parsing of fractions and floats in mantissa bases other than 10 by Robert Griesemer · 10 years ago
- 0a24b8c math/big: sketched out complete set of Float/string conversion functions by Robert Griesemer · 10 years ago
- f4a2617 math/big: various fixes, enable tests for 32bit platforms by Robert Griesemer · 10 years ago
- 3acb9fd math/big: disable some tests on 32bit platforms (fix build) by Robert Griesemer · 10 years ago
- bd275b2 math/big: multi-precision Floats (starting point) by Robert Griesemer · 10 years ago