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

it.unitn.disi.smatch.preprocessors.IContextPreprocessor Maven / Gradle / Ivy

The newest version!
package it.unitn.disi.smatch.preprocessors;

import it.unitn.disi.common.components.IConfigurable;
import it.unitn.disi.smatch.data.trees.IContext;

/**
 * An interface for context preprocessors.
 *
 * @author Mikalai Yatskevich [email protected]
 * @author 
 */
public interface IContextPreprocessor extends IConfigurable {

    /**
     * This method translates natural language labels of a context into logical formulas.
     *
     * @param context context to be preprocessed
     * @throws ContextPreprocessorException ContextPreprocessorException
     */
    public void preprocess(IContext context) throws ContextPreprocessorException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy