cz.cvut.felk.cig.jcop.solver.condition.StopCondition 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.solver.condition;
import cz.cvut.felk.cig.jcop.solver.message.MessageListener;
/**
* Base for all stop conditions, defines method required for a stop condition to be used in JCOP.
*
* @author Ondrej Skalicka
* @see BaseCondition base abstract implementation
*/
public interface StopCondition extends MessageListener {
/**
* Returns true if condition is met
*
* @return true if condition is met
*/
boolean isConditionMet();
}