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

com.enterprisemath.math.fa.Metric Maven / Gradle / Ivy

The newest version!
package com.enterprisemath.math.fa;

/**
 * Definition of
 *
 * @author radek.hecl
 * @param  object type
 */
public interface Metric {

    /**
     * Returns distance between 2 objects.
     *
     * @param obj1 object 1
     * @param obj2 object 2
     * @return distance
     */
    public double getDistance(T obj1, T obj2);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy