
aima.core.util.Randomizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
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 - 2025 Weber Informatics LLC | Privacy Policy