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.
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;
}
}