All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.vangj.jbayes.inf.prob.util.RandomUtil Maven / Gradle / Ivy

The newest version!
package com.github.vangj.jbayes.inf.prob.util;

import java.util.Random;

/**
 * Util class to generate random numbers.
 */
public class RandomUtil {

  private static final Random R = new Random(37L);

  private RandomUtil() {

  }

  public static double nextDouble() {
    return R.nextDouble();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy