com.github.chen0040.gp.services.RandEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-genetic-programming Show documentation
Show all versions of java-genetic-programming Show documentation
Genetic Programming in Java, including packages on Linear Genetic Programming
package com.github.chen0040.gp.services;
import java.util.Random;
/**
* Created by xschen on 28/4/2017.
* Interface for the random engine which provides random number to the package
*/
public interface RandEngine {
double uniform();
double normal(double mean, double sd);
int nextInt(int upper);
int nextInt(int lower, int upper);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy