Interface IDistanceFunction<T>

Type Parameters:
T - The type of the data objects.
All Known Implementing Classes:
GraphEditDistance, OPTICSDataGED

public interface IDistanceFunction<T>
An object that can calculate the distance between two data objects.
Since:
2.0.0
Author:
Eduardo R. D'Avila
  • Method Summary

    Modifier and Type Method Description
    double calculate​(T data1, T data2)  
  • Method Details