Exemplo n.º 1
0
 /**
  * Produces a boolean value according to the stored probability distribution
  *
  * @return A boolean value according to the stored probability distribution
  */
 public boolean next() {
   return (g.next() >= falseProbability);
 }