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

aima.core.util.Randomizer Maven / Gradle / Ivy

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
package aima.core.util;

/**
 * @author Ravi Mohan
 * 
 */
public interface Randomizer {

	/**
	 * 
	 * @return a double value, chosen (approximately) uniformly from the range
	 *         [0.0d, 1.0d), i.e. 0.0d (inclusive) to 1.0d (exclusive).
	 */
	public double nextDouble();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy