mpfr_libmpfr_urandom Method |
Namespace: Math.Mpfr.Native
The floating-point number rop can be seen as if a random real number is generated according to the continuous uniform distribution on the interval [0, 1] and then rounded in the direction rnd.
The second argument is a gmp_randstate_t structure which should be created using the GMP gmp_randinit function (see the GMP manual).
Note: the note for mpfr_urandomb holds too. Moreover, the exact number (the random value to be rounded) and the next random state do not depend on the current exponent range and the rounding mode. However, they depend on the target precision: from the same state of the random generator, if the precision of the destination is changed, then the value may be completely different (and the state of the random generator is different too).
// Create, initialize, and seed a new random number generator. gmp_randstate_t state = new gmp_randstate_t(); gmp_lib.gmp_randinit_mt(state); gmp_lib.gmp_randseed_ui(state, 100000U); // Create, initialize, and set the value of rop to NaN. mpfr_t rop = new mpfr_t(); mpfr_lib.mpfr_init2(rop, 64U); // Generate a random integer in the range [0, 1]. Assert.IsTrue(mpfr_lib.mpfr_urandom(rop, state, mpfr_rnd_t.MPFR_RNDN) == -1); // Free all memory occupied by state and rop. gmp_lib.gmp_randclear(state); mpfr_lib.mpfr_clear(rop);