usr/share/awk/have_mpfr.awk 0000644 00000000335 15043345266 0011725 0 ustar 00 # adequate_math_precision --- return true if we have enough bits
#
# Andrew Schorr, aschorr@telemetry-investments.com, Public Domain
# May 2017
function adequate_math_precision(n)
{
return (1 != (1+(1/(2^(n-1)))))
}