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

ai.libs.jaicore.basic.IOwnerBasedRandomConfig Maven / Gradle / Ivy

There is a newer version: 0.2.7
Show newest version
package ai.libs.jaicore.basic;

import org.api4.java.algorithm.IRandomAlgorithmConfig;

/**
 * Random configurations can be used to provide a random seed.
 * Random can occur in both an underlying problem instance, an algorithm used to tackle the problem, or both
 *
 * @author fmohr
 *
 */
public interface IOwnerBasedRandomConfig extends IRandomAlgorithmConfig {
	public static final String K_SEED = "seed";

	@Override
	public long seed();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy