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

gov.sandia.cognition.learning.function.distance.DivergenceFunctionContainer Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * File:            DivergenceFunctionContainer.java
 * Authors:         Justin Basilico
 * Project:         Cognitive Foundry Learning Core
 * 
 * Copyright 2011 Cognitive Foundry. All rights reserved.
 */

package gov.sandia.cognition.learning.function.distance;

import gov.sandia.cognition.math.DivergenceFunction;

/**
 * Interface for a class that holds a divergence function.
 *
 * @param   
 *      The type of the first parameter to the divergence function.
 * @param   
 *      The type of the second parameter to the divergence function.
 * @author  Justin Basilico
 * @since   3.3.3
 */
public interface DivergenceFunctionContainer
{

    /**
     * Gets the divergence function used by this object.
     *
     * @return
     *      The divergence function.
     */
    public DivergenceFunction
        getDivergenceFunction();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy