 
  
  
  
 
A simple random number package is provided, which produces a sequence of pseudo-random numbers based on a seed value, which totally determines the entire sequence of numbers. If the user does not set a seed, a seed is automatically created from the current time and date.
public  void  set_random_seed(
    int seed )
public  int  get_random_int(
    int n )
public  Real  get_random_0_to_1( void )
 
  
  
 