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

cz.cvut.felk.cig.jcop.solver.condition.StopCondition Maven / Gradle / Ivy

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy