![JAR search and dependency download from the Maven repository](/logo.png)
es.ucm.fdi.gaia.jcolibri.evaluation.Evaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jCOLIBRI Show documentation
Show all versions of jCOLIBRI Show documentation
jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.
The newest version!
package es.ucm.fdi.gaia.jcolibri.evaluation;
import es.ucm.fdi.gaia.jcolibri.cbraplications.StandardCBRApplication;
/**
* This abstract class defines the common behaviour of an evaluator.
* @author Juanan
*/
public abstract class Evaluator {
/** Initializes the evaluator with the CBR application to evaluate
* @see StandardCBRApplication
* */
public abstract void init(StandardCBRApplication cbrApp);
/** Object that stores the evaluation results */
protected static EvaluationReport report;
/** Returns the evaluation report */
public static EvaluationReport getEvaluationReport(){
return report;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy