![JAR search and dependency download from the Maven repository](/logo.png)
com.github.TKnudsen.ComplexDataObject.model.distanceMeasure.IDistanceMeasure Maven / Gradle / Ivy
package com.github.TKnudsen.ComplexDataObject.model.distanceMeasure;
import java.util.function.ToDoubleBiFunction;
import com.github.TKnudsen.ComplexDataObject.data.interfaces.ISelfDescription;
/**
*
* Title: IDistanceMeasure
*
*
*
* Description: Basic interface modeling distances between two objects of
* identical type.
*
*
*
* Copyright: Copyright (c) 2017
*
*
* @author Juergen Bernard
* @version 1.01
*/
public interface IDistanceMeasure extends ToDoubleBiFunction, ISelfDescription {
public double getDistance(T o1, T o2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy