
toxgene.core.random.ToxRandom Maven / Gradle / Ivy
/**
* Interface for ToX radom generators
*
* @author Denilson Barbosa
* @version 0.1
*/
package toxgene.core.random;
public interface ToxRandom{
public long nextInt();
public float nextFloat();
public float minValue();
public float maxValue();
/**
* this method is necessary for the case where we generate elements whose
* maximum allowed quantity is unknow at TSL compile time.
*/
public long nextInt(float value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy