random method

double random()

Implementation

double random() {
  return genrandInt32() * (1.0 / 4294967296.0);
  /* divided by 2^32 */
}