issues
search
ALTree
/
bigfloat
Additional operations for the standard library big.Float type
MIT License
25
stars
10
forks
source link
log.go: small optimizations
#26
Closed
ALTree
closed
8 years ago
ALTree
commented
8 years ago
No need to call
powInt
to compute '2**(prec/2)
, use
SetMantExp`
No need to call
Quo
to divide by a power of two, just multiply by the inverse. And remove
powInt
call here too.
powInt
to compute '2**(prec/2), use
SetMantExp`Quo
to divide by a power of two, just multiply by the inverse. And removepowInt
call here too.