cz.cvut.felk.cig.jcop.solver.condition.BaseCondition 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.Message;
/**
* Implements some methods of {@link StopCondition} identical for most stop conditions for easier use.
*
* @author Ondrej Skalicka
*/
public abstract class BaseCondition implements StopCondition {
public void onMessage(Message message) {
}
}