Hi,
I have a question. How can I calculate/estimate upper bound of random number, that a random number can generate ? Thanks in advance!
Hi,
I have a question. How can I calculate/estimate upper bound of random number, that a random number can generate ? Thanks in advance!
Random Number generators will generate a number between 0 and 1. The real limiting factor is the precision of your platform/framework. The upper/lower bounds will be whatever the min/max of the data type you convert the 0-1 value to.
thanks for answers ! With upper bound I mean the number of distinct values that the RNG generates. The random number generator is based on a hashfunction.