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

es.ucm.fdi.gaia.jcolibri.extensions.classification.ClassificationSolution 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
/**
 * ClassificationSolution.java
 * jCOLIBRI2 framework. 
 * @author Juan A. Recio-Garc�a.
 * GAIA - Group for Artificial Intelligence Applications
 * http://gaia.fdi.ucm.es
 * 04/08/2007
 */
package es.ucm.fdi.gaia.jcolibri.extensions.classification;

import es.ucm.fdi.gaia.jcolibri.cbrcore.CaseComponent;

/**
 * Defines a common interface for the solution CaseComponents of 
 * a case that will be classified.
 * @author Juan A. Recio-Garcia
 * @version 1.0
 *
 */
public interface ClassificationSolution extends CaseComponent
{
    /**
     * Returns the class of the solution (case).
     */
    Object getClassification();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy