Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Verdant
/
test
like
0
Modalities:
Text
Dataset card
Data Studio
Files
Files and versions
xet
Community
main
test
/
git
/
usr
/
share
/
awk
/
have_mpfr.awk
Verdant
Upload 328 files
82618f7
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
221 Bytes
# 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
)))))
}