-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rand(BigInt)
#24907
Comments
Do you request specifically the random generation provided by those libraries? If so, see #13950 for |
No, not using those libraries I was just observing they exist. I see that |
And |
Oh of-course it can't. |
It could check how much memory you have and generate a random integer between |
GMP and MPFR have random number generator functions.
However, they are not currently exposed to julia.
It seems like they should be, as generating random numbers correctly is hard.
Making sure
srand
works properly may take some doing.(from https://stackoverflow.com/questions/47628275/random-bigfloats-julia)
Update: I see now
rand(BigFloat)
works on master, but notrand(BigInt)
The text was updated successfully, but these errors were encountered: