cz.cvut.felk.cig.jcop.problem.RandomConfigurationProblem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcop Show documentation
Show all versions of jcop Show documentation
Java Combinatorial Optimization Platform
The newest version!
/*
* Copyright © 2010 by Ondrej Skalicka. All Rights Reserved
*/
package cz.cvut.felk.cig.jcop.problem;
/**
* Problem implementing RandomConfigurationProblem is able to return random configurations.
*
* This includes problems like SAT, where you can have each attributes attribute have random value true or false.
*
* @author Ondrej Skalicka
*/
public interface RandomConfigurationProblem {
/**
* Returns one random configuration without seed set.
*
* @return one random configuration
*/
Configuration getRandomConfiguration();
}