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

es.ucm.fdi.gaia.jcolibri.evaluation.Evaluator Maven / Gradle / Ivy

Go to download

jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.

There is a newer version: 3.2
Show 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 - 2024 Weber Informatics LLC | Privacy Policy