com.enterprisemath.math.fa.Metric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-math Show documentation
Show all versions of em-math Show documentation
Advanced mathematical algorithms.
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);
}