Doa-doa's picture
Upload folder using huggingface_hub
72268ee
raw
history blame contribute delete
221 Bytes
# adequate_math_precision --- return true if we have enough bits
#
# Andrew Schorr, [email protected], Public Domain
# May 2017
function adequate_math_precision(n)
{
return (1 != (1+(1/(2^(n-1)))))
}