Created
November 19, 2012 12:59
-
-
Save rofr/4110513 to your computer and use it in GitHub Desktop.
Distance Function interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface DistanceFunction<T> { | |
double calculateDistance(T item, T item2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment